]> Git Repo - linux.git/commitdiff
ide/ide-scan-pci.c: Use for_each_pci_dev().
authorThiago Farina <[email protected]>
Sun, 1 May 2011 12:10:25 +0000 (12:10 +0000)
committerDavid S. Miller <[email protected]>
Mon, 16 May 2011 21:24:46 +0000 (14:24 -0700)
Use for_each_pci_dev() to simplify the code.

Signed-off-by: Thiago Farina <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
drivers/ide/ide-scan-pci.c

index 0e79efff1debdd5c357c658b77b0ec1a60e735e2..c3da53e7bb2b481735569832bfe7928b66f26756 100644 (file)
@@ -88,7 +88,7 @@ static int __init ide_scan_pcibus(void)
        struct list_head *l, *n;
 
        pre_init = 0;
-       while ((dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev)))
+       for_each_pci_dev(dev)
                ide_scan_pcidev(dev);
 
        /*
This page took 0.067532 seconds and 4 git commands to generate.