diff options
author | Bjorn Helgaas <bhelgaas@google.com> | 2012-08-16 17:13:00 -0600 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2012-08-22 11:34:38 -0600 |
commit | c29aabe22eafb4914aecebab6e99623894d81564 (patch) | |
tree | ca5f6b17942c97de40e073390ac5732454de9097 /include/linux/pci.h | |
parent | 0a4af1473a7d81fc90e195fb5b241ab5fcf933ca (diff) | |
download | linux-3.10-c29aabe22eafb4914aecebab6e99623894d81564.tar.gz linux-3.10-c29aabe22eafb4914aecebab6e99623894d81564.tar.bz2 linux-3.10-c29aabe22eafb4914aecebab6e99623894d81564.zip |
PCI: Remove unused pci_dev_b()
All uses of pci_dev_b() have been replaced by list_for_each_entry(), so
remove it.
Tested-by: Yijing Wang <wangyijing@huawei.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Acked-by: Yinghai Lu <yinghai@kernel.org>
Diffstat (limited to 'include/linux/pci.h')
-rw-r--r-- | include/linux/pci.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/pci.h b/include/linux/pci.h index 1dce47ca129..ed47147ac99 100644 --- a/include/linux/pci.h +++ b/include/linux/pci.h @@ -369,7 +369,6 @@ static inline struct pci_dev *pci_physfn(struct pci_dev *dev) extern struct pci_dev *alloc_pci_dev(void); -#define pci_dev_b(n) list_entry(n, struct pci_dev, bus_list) #define to_pci_dev(n) container_of(n, struct pci_dev, dev) #define for_each_pci_dev(d) while ((d = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, d)) != NULL) |