]> git.karo-electronics.de Git - linux-beck.git/commitdiff
PCI: Rename pci_remove_bus_device to pci_stop_and_remove_bus_device
authorYinghai Lu <yinghai@kernel.org>
Sat, 25 Feb 2012 21:54:20 +0000 (13:54 -0800)
committerJesse Barnes <jbarnes@virtuousgeek.org>
Mon, 27 Feb 2012 20:12:18 +0000 (12:12 -0800)
The old pci_remove_bus_device actually did stop and remove.

Make the name reflect that to reduce confusion.

This patch is done by sed scripts and changes back some incorrect
__pci_remove_bus_device changes.

Suggested-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Signed-off-by: Yinghai Lu <yinghai@kernel.org>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
22 files changed:
arch/arm/mach-ixp2000/ixdp2400.c
arch/arm/mach-ixp2000/ixdp2800.c
arch/arm/mach-ixp2000/ixdp2x00.c
arch/powerpc/platforms/pseries/pci_dlpar.c
drivers/message/fusion/mptbase.c
drivers/pci/hotplug/acpiphp_glue.c
drivers/pci/hotplug/cpci_hotplug_pci.c
drivers/pci/hotplug/cpqphp_pci.c
drivers/pci/hotplug/fakephp.c
drivers/pci/hotplug/ibmphp_core.c
drivers/pci/hotplug/pciehp_pci.c
drivers/pci/hotplug/rpadlpar_core.c
drivers/pci/hotplug/sgi_hotplug.c
drivers/pci/hotplug/shpchp_pci.c
drivers/pci/iov.c
drivers/pci/pci-sysfs.c
drivers/pci/remove.c
drivers/pci/xen-pcifront.c
drivers/platform/x86/asus-wmi.c
drivers/platform/x86/eeepc-laptop.c
drivers/scsi/mpt2sas/mpt2sas_base.c
include/linux/pci.h

index f53e911ec94a9f475d3d65842cdb22d66e0b0f67..d519944653adb32c544874c0266049851abfb8db 100644 (file)
@@ -134,11 +134,11 @@ static void ixdp2400_pci_postinit(void)
 
        if (ixdp2x00_master_npu()) {
                dev = pci_get_bus_and_slot(1, IXDP2400_SLAVE_ENET_DEVFN);
-               pci_remove_bus_device(dev);
+               pci_stop_and_remove_bus_device(dev);
                pci_dev_put(dev);
        } else {
                dev = pci_get_bus_and_slot(1, IXDP2400_MASTER_ENET_DEVFN);
-               pci_remove_bus_device(dev);
+               pci_stop_and_remove_bus_device(dev);
                pci_dev_put(dev);
 
                ixdp2x00_slave_pci_postinit();
index a2e7c393e74fb198d3d3aad258c88bd17ce2cc08..b415febd2025fcf0022547d8bbea57b388b06bfc 100644 (file)
@@ -262,14 +262,14 @@ int __init ixdp2800_pci_init(void)
                pci_common_init(&ixdp2800_pci);
                if (ixdp2x00_master_npu()) {
                        dev = pci_get_bus_and_slot(1, IXDP2800_SLAVE_ENET_DEVFN);
-                       pci_remove_bus_device(dev);
+                       pci_stop_and_remove_bus_device(dev);
                        pci_dev_put(dev);
 
                        ixdp2800_master_enable_slave();
                        ixdp2800_master_wait_for_slave_bus_scan();
                } else {
                        dev = pci_get_bus_and_slot(1, IXDP2800_MASTER_ENET_DEVFN);
-                       pci_remove_bus_device(dev);
+                       pci_stop_and_remove_bus_device(dev);
                        pci_dev_put(dev);
                }
        }
index 634b6c852f68f58d0d8cf368e45cf0946b0987a7..dd9838299068266e3315c5fbd21c302834fabf0d 100644 (file)
@@ -239,12 +239,12 @@ void ixdp2x00_slave_pci_postinit(void)
         * Remove PMC device is there is one
         */
        if((dev = pci_get_bus_and_slot(1, IXDP2X00_PMC_DEVFN))) {
-               pci_remove_bus_device(dev);
+               pci_stop_and_remove_bus_device(dev);
                pci_dev_put(dev);
        }
 
        dev = pci_get_bus_and_slot(0, IXDP2X00_21555_DEVFN);
-       pci_remove_bus_device(dev);
+       pci_stop_and_remove_bus_device(dev);
        pci_dev_put(dev);
 }
 
index 55d4ec1bd1ac6234531127c867749aa5bba3ca68..200a1ca2528e048323ec37e0b42c7cb714186e70 100644 (file)
@@ -84,7 +84,7 @@ void pcibios_remove_pci_devices(struct pci_bus *bus)
        list_for_each_entry_safe(dev, tmp, &bus->devices, bus_list) {
                pr_debug("     * Removing %s...\n", pci_name(dev));
                eeh_remove_bus_device(dev);
-               pci_remove_bus_device(dev);
+               pci_stop_and_remove_bus_device(dev);
        }
 }
 EXPORT_SYMBOL_GPL(pcibios_remove_pci_devices);
index a7dc4672d996c5e67bb112371e92bfd634f2d1c7..a5c591ffe395d01b6e7e09f927c03f3048688620 100644 (file)
@@ -346,7 +346,7 @@ static int mpt_remove_dead_ioc_func(void *arg)
        if ((pdev == NULL))
                return -1;
 
-       pci_remove_bus_device(pdev);
+       pci_stop_and_remove_bus_device(pdev);
        return 0;
 }
 
index 12d070ca767480937e8e4bf92c88bd8bd4195b0d..fdc34b599e7ba70a78e094cf38dc8287d41861e5 100644 (file)
@@ -910,7 +910,7 @@ static int disable_device(struct acpiphp_slot *slot)
                                disable_bridges(pdev->subordinate);
                                pci_disable_device(pdev);
                        }
-                       pci_remove_bus_device(pdev);
+                       pci_stop_and_remove_bus_device(pdev);
                        pci_dev_put(pdev);
                }
        }
@@ -1067,7 +1067,7 @@ static void acpiphp_sanitize_bus(struct pci_bus *bus)
                                        res->end) {
                                /* Could not assign a required resources
                                 * for this device, remove it */
-                               pci_remove_bus_device(dev);
+                               pci_stop_and_remove_bus_device(dev);
                                break;
                        }
                }
index 829c327cfb5e5780bf9cde69877cdec759c63549..ae853ccd0cd5f4e9faadb3bc1361647b2db3cab9 100644 (file)
@@ -341,7 +341,7 @@ int cpci_unconfigure_slot(struct slot* slot)
                dev = pci_get_slot(slot->bus,
                                    PCI_DEVFN(PCI_SLOT(slot->devfn), i));
                if (dev) {
-                       pci_remove_bus_device(dev);
+                       pci_stop_and_remove_bus_device(dev);
                        pci_dev_put(dev);
                }
        }
index 6173b9a4544efec9d79ef45f6c67a68a495987d8..1c8494021a42762ac7b6270ae519df9c44355669 100644 (file)
@@ -127,7 +127,7 @@ int cpqhp_unconfigure_device(struct pci_func* func)
                struct pci_dev* temp = pci_get_bus_and_slot(func->bus, PCI_DEVFN(func->device, j));
                if (temp) {
                        pci_dev_put(temp);
-                       pci_remove_bus_device(temp);
+                       pci_stop_and_remove_bus_device(temp);
                }
        }
        return 0;
index 17d10e2e8fb692f2f605fc6a63571df63ff46a14..a019c9a712bed03bd297d65b653119afc732d1b1 100644 (file)
@@ -40,7 +40,7 @@ static ssize_t legacy_show(struct kobject *kobj, struct attribute *attr,
 
 static void remove_callback(void *data)
 {
-       pci_remove_bus_device((struct pci_dev *)data);
+       pci_stop_and_remove_bus_device((struct pci_dev *)data);
 }
 
 static ssize_t legacy_store(struct kobject *kobj, struct attribute *attr,
index 5506e0e8fbc0055f354705c35bd2276419ba3917..4fda7e6a86a7342a66ba7577008db3abc209cb6d 100644 (file)
@@ -721,7 +721,7 @@ static void ibm_unconfigure_device(struct pci_func *func)
        for (j = 0; j < 0x08; j++) {
                temp = pci_get_bus_and_slot(func->busno, (func->device << 3) | j);
                if (temp) {
-                       pci_remove_bus_device(temp);
+                       pci_stop_and_remove_bus_device(temp);
                        pci_dev_put(temp);
                }
        }
index a4031dfe938ecd037227896fac3fabe5ca24e56b..47d9dc06b109a632557232b92e7932918ab5a9db 100644 (file)
@@ -141,7 +141,7 @@ int pciehp_unconfigure_device(struct slot *p_slot)
                                break;
                        }
                }
-               pci_remove_bus_device(temp);
+               pci_stop_and_remove_bus_device(temp);
                /*
                 * Ensure that no new Requests will be generated from
                 * the device.
index c56a9413e1afc62596c98cdbd54ddfdd345429a9..1e117c2a3cad032390fe9ab1a12745b6ce405313 100644 (file)
@@ -389,7 +389,7 @@ int dlpar_remove_pci_slot(char *drc_name, struct device_node *dn)
        BUG_ON(!bus->self);
        pr_debug("PCI: Now removing bridge device %s\n", pci_name(bus->self));
        eeh_remove_bus_device(bus->self);
-       pci_remove_bus_device(bus->self);
+       pci_stop_and_remove_bus_device(bus->self);
 
        return 0;
 }
index 72d507b6a2aa8d446d06fcbbcfc3aa68799434f5..de573113c102519e9851e70fc20c62fea5517683 100644 (file)
@@ -554,7 +554,7 @@ static int disable_slot(struct hotplug_slot *bss_hotplug_slot)
                                             PCI_FUNC(func)));
                if (dev) {
                        sn_bus_free_data(dev);
-                       pci_remove_bus_device(dev);
+                       pci_stop_and_remove_bus_device(dev);
                        pci_dev_put(dev);
                }
        }
index a2ccfcd3c29840ea9bfa6384b79e813cba67e21e..df7e4bfadae35fc5398b5a52f8c1443ef8827b6a 100644 (file)
@@ -124,7 +124,7 @@ int shpchp_unconfigure_device(struct slot *p_slot)
                                break;
                        }
                }
-               pci_remove_bus_device(temp);
+               pci_stop_and_remove_bus_device(temp);
                pci_dev_put(temp);
        }
        return rc;
index 687b3c8e8e3bd9e28f00c52cdaa9d63857479304..6554e1a0f63480c0837cf6be5bed4f920f0dc4df 100644 (file)
@@ -142,7 +142,7 @@ failed2:
 failed1:
        pci_dev_put(dev);
        mutex_lock(&iov->dev->sriov->lock);
-       pci_remove_bus_device(virtfn);
+       pci_stop_and_remove_bus_device(virtfn);
        virtfn_remove_bus(dev->bus, virtfn_bus(dev, id));
        mutex_unlock(&iov->dev->sriov->lock);
 
@@ -182,7 +182,7 @@ static void virtfn_remove(struct pci_dev *dev, int id, int reset)
                sysfs_remove_link(&virtfn->dev.kobj, "physfn");
 
        mutex_lock(&iov->dev->sriov->lock);
-       pci_remove_bus_device(virtfn);
+       pci_stop_and_remove_bus_device(virtfn);
        virtfn_remove_bus(dev->bus, virtfn_bus(dev, id));
        mutex_unlock(&iov->dev->sriov->lock);
 
index d9723039e99ae32407f04398f51ed978082d4fe8..a55e248618cd00e7de495a078c3bb59d177123f4 100644 (file)
@@ -330,7 +330,7 @@ static void remove_callback(struct device *dev)
        struct pci_dev *pdev = to_pci_dev(dev);
 
        mutex_lock(&pci_remove_rescan_mutex);
-       pci_remove_bus_device(pdev);
+       pci_stop_and_remove_bus_device(pdev);
        mutex_unlock(&pci_remove_rescan_mutex);
 }
 
index 82f8ae572703b1542134d04e55eb5bc74b4bb7b7..7abe67b45cc84563241b95654a3e374db888281c 100644 (file)
@@ -79,7 +79,7 @@ EXPORT_SYMBOL(pci_remove_bus);
 
 static void __pci_remove_behind_bridge(struct pci_dev *dev);
 /**
- * pci_remove_bus_device - remove a PCI device and any children
+ * pci_stop_and_remove_bus_device - remove a PCI device and any children
  * @dev: the device to remove
  *
  * Remove a PCI device from the device lists, informing the drivers
@@ -102,7 +102,7 @@ static void __pci_remove_bus_device(struct pci_dev *dev)
 
        pci_destroy_dev(dev);
 }
-void pci_remove_bus_device(struct pci_dev *dev)
+void pci_stop_and_remove_bus_device(struct pci_dev *dev)
 {
        pci_stop_bus_device(dev);
        __pci_remove_bus_device(dev);
@@ -145,7 +145,7 @@ static void pci_stop_bus_devices(struct pci_bus *bus)
        struct list_head *l, *n;
 
        /*
-        * VFs could be removed by pci_remove_bus_device() in the
+        * VFs could be removed by pci_stop_and_remove_bus_device() in the
         *  pci_stop_bus_devices() code path for PF.
         *  aka, bus->devices get updated in the process.
         * but VFs are inserted after PFs when SRIOV is enabled for PF,
@@ -174,6 +174,6 @@ void pci_stop_bus_device(struct pci_dev *dev)
        pci_stop_dev(dev);
 }
 
-EXPORT_SYMBOL(pci_remove_bus_device);
+EXPORT_SYMBOL(pci_stop_and_remove_bus_device);
 EXPORT_SYMBOL(pci_remove_behind_bridge);
 EXPORT_SYMBOL_GPL(pci_stop_bus_device);
index 7cf3d2fcf56a9369209395304494d4b7699d5f6d..fb8a39c7c3d6a8545e3f0ba0300d9e6cd1aa0181 100644 (file)
@@ -544,7 +544,7 @@ static void free_root_bus_devs(struct pci_bus *bus)
                dev = container_of(bus->devices.next, struct pci_dev,
                                   bus_list);
                dev_dbg(&dev->dev, "removing device\n");
-               pci_remove_bus_device(dev);
+               pci_stop_and_remove_bus_device(dev);
        }
 }
 
@@ -1045,7 +1045,7 @@ static int pcifront_detach_devices(struct pcifront_device *pdev)
                                domain, bus, slot, func);
                        continue;
                }
-               pci_remove_bus_device(pci_dev);
+               pci_stop_and_remove_bus_device(pci_dev);
                pci_dev_put(pci_dev);
 
                dev_dbg(&pdev->xdev->dev,
index 72d731c21d45c19ddb1502899214f1408cdb7184..9929246895deb386a75dd08b00722f0424257595 100644 (file)
@@ -571,7 +571,7 @@ static void asus_rfkill_hotplug(struct asus_wmi *asus)
                } else {
                        dev = pci_get_slot(bus, 0);
                        if (dev) {
-                               pci_remove_bus_device(dev);
+                               pci_stop_and_remove_bus_device(dev);
                                pci_dev_put(dev);
                        }
                }
index ea44abd8df48d7db82c3b8e8a7d7c671cd00b028..d9a9e2bedb30311f9423adc276c29d19c47503f5 100644 (file)
@@ -646,7 +646,7 @@ static void eeepc_rfkill_hotplug(struct eeepc_laptop *eeepc, acpi_handle handle)
                } else {
                        dev = pci_get_slot(bus, 0);
                        if (dev) {
-                               pci_remove_bus_device(dev);
+                               pci_stop_and_remove_bus_device(dev);
                                pci_dev_put(dev);
                        }
                }
index 0b2c95583660f67a652217d8b5ca3f25bee24984..c7d5a921a4303a1e0cc4b26053dfbad71d12e465 100644 (file)
@@ -132,7 +132,7 @@ static int mpt2sas_remove_dead_ioc_func(void *arg)
                pdev = ioc->pdev;
                if ((pdev == NULL))
                        return -1;
-               pci_remove_bus_device(pdev);
+               pci_stop_and_remove_bus_device(pdev);
                return 0;
 }
 
index 74a20bdc93f62534921d43220bafa73a94983a37..a4c552d9908e0358205f8cb1c7daa0dbb4a8935c 100644 (file)
@@ -686,7 +686,7 @@ u8 pci_common_swizzle(struct pci_dev *dev, u8 *pinp);
 extern struct pci_dev *pci_dev_get(struct pci_dev *dev);
 extern void pci_dev_put(struct pci_dev *dev);
 extern void pci_remove_bus(struct pci_bus *b);
-extern void pci_remove_bus_device(struct pci_dev *dev);
+extern void pci_stop_and_remove_bus_device(struct pci_dev *dev);
 extern void pci_stop_bus_device(struct pci_dev *dev);
 void pci_setup_cardbus(struct pci_bus *bus);
 extern void pci_sort_breadthfirst(void);