projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2e9feb4
)
hpsa: add missing pci_set_master in kdump path
author
Tomas Henzl
<
[email protected]
>
Fri, 12 Sep 2014 12:44:15 +0000
(14:44 +0200)
committer
Christoph Hellwig
<
[email protected]
>
Thu, 25 Sep 2014 12:23:41 +0000
(14:23 +0200)
Add a call to pci_set_master(...) missing in the previous
patch "hpsa: refine the pci enable/disable handling".
Found thanks to Rob Elliot.
Signed-off-by: Tomas Henzl <
[email protected]
>
Reviewed-by: Robert Elliott <
[email protected]
>
Tested-by: Robert Elliott <
[email protected]
>
Signed-off-by: Christoph Hellwig <
[email protected]
>
drivers/scsi/hpsa.c
patch
|
blob
|
history
diff --git
a/drivers/scsi/hpsa.c
b/drivers/scsi/hpsa.c
index 7828834e212b98ab92d352b6f399c79291c99a6a..cef5d49b59cd248d124e81bb568f0e3c198cc1df 100644
(file)
--- a/
drivers/scsi/hpsa.c
+++ b/
drivers/scsi/hpsa.c
@@
-6544,7
+6544,7
@@
static int hpsa_init_reset_devices(struct pci_dev *pdev)
dev_warn(&pdev->dev, "failed to enable device.\n");
return -ENODEV;
}
-
+ pci_set_master(pdev);
/* Reset the controller with a PCI power-cycle or via doorbell */
rc = hpsa_kdump_hard_reset_controller(pdev);