Staging: vt6655: use for_each_pci_dev()
Use for_each_pci_dev() to simplify the code. Signed-off-by: Kulikov Vasiliy <segooon@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
388bf2e8fe
commit
5bddefad3e
@@ -3655,7 +3655,7 @@ device_notify_reboot(struct notifier_block *nb, unsigned long event, void *p)
|
|||||||
case SYS_DOWN:
|
case SYS_DOWN:
|
||||||
case SYS_HALT:
|
case SYS_HALT:
|
||||||
case SYS_POWER_OFF:
|
case SYS_POWER_OFF:
|
||||||
while ((pdev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, pdev)) != NULL) {
|
for_each_pci_dev(pdev) {
|
||||||
if(pci_dev_driver(pdev) == &device_driver) {
|
if(pci_dev_driver(pdev) == &device_driver) {
|
||||||
if (pci_get_drvdata(pdev))
|
if (pci_get_drvdata(pdev))
|
||||||
viawget_suspend(pdev, PMSG_HIBERNATE);
|
viawget_suspend(pdev, PMSG_HIBERNATE);
|
||||||
|
Reference in New Issue
Block a user