mirror of
https://github.com/torvalds/linux.git
synced 2024-11-16 17:12:06 +00:00
Staging: vme: Re-introduce necessary brackets
Somehow I managed to remove a set of rather necessary brackets in commit
29848ac9f3
. Put them back.
Signed-off-by: Martyn Welch <martyn.welch@ge.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
f3cdc28520
commit
4839737b3b
@ -2455,9 +2455,10 @@ static int tsi148_probe(struct pci_dev *pdev, const struct pci_device_id *id)
|
||||
dev_info(&pdev->dev, "VME Write and flush and error check is %s\n",
|
||||
err_chk ? "enabled" : "disabled");
|
||||
|
||||
if (tsi148_crcsr_init(tsi148_bridge, pdev))
|
||||
if (tsi148_crcsr_init(tsi148_bridge, pdev)) {
|
||||
dev_err(&pdev->dev, "CR/CSR configuration failed.\n");
|
||||
goto err_crcsr;
|
||||
}
|
||||
|
||||
retval = vme_register_bridge(tsi148_bridge);
|
||||
if (retval != 0) {
|
||||
|
Loading…
Reference in New Issue
Block a user