mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 01:31:44 +00:00
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:
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_HALT:
|
||||
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_get_drvdata(pdev))
|
||||
viawget_suspend(pdev, PMSG_HIBERNATE);
|
||||
|
Loading…
Reference in New Issue
Block a user