Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit efe1ec27 authored by Amit Gud's avatar Amit Gud Committed by Greg Kroah-Hartman
Browse files

[PATCH] pci: remove deprecates



Replace pci_find_device() with more safer pci_get_device().

Signed-off-by: default avatarAmit Gud <gud@eth.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 881a8c12
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1095,7 +1095,7 @@ static int __init rio_init(void)

#ifdef CONFIG_PCI
    /* First look for the JET devices: */
    while ((pdev = pci_find_device (PCI_VENDOR_ID_SPECIALIX, 
    while ((pdev = pci_get_device (PCI_VENDOR_ID_SPECIALIX,
                                    PCI_DEVICE_ID_SPECIALIX_SX_XIO_IO8, 
                                    pdev))) {
       if (pci_enable_device(pdev)) continue;
@@ -1169,7 +1169,7 @@ static int __init rio_init(void)
  */

    /* Then look for the older RIO/PCI devices: */
    while ((pdev = pci_find_device (PCI_VENDOR_ID_SPECIALIX, 
    while ((pdev = pci_get_device (PCI_VENDOR_ID_SPECIALIX,
                                    PCI_DEVICE_ID_SPECIALIX_RIO, 
                                    pdev))) {
       if (pci_enable_device(pdev)) continue;