diff options
author | Yinghai Lu <yinghai@kernel.org> | 2012-01-21 02:08:32 -0800 |
---|---|---|
committer | Jesse Barnes <jbarnes@virtuousgeek.org> | 2012-02-14 08:44:58 -0800 |
commit | 67cc7e26a5c46508ee00b9fe169aad833b798025 (patch) | |
tree | bb684ce9e451597efe4fa6a19df0c64fb57a8d6a | |
parent | b592443d9045f0880eb4d8cc9125075744db4b9e (diff) | |
download | linux-3.10-67cc7e26a5c46508ee00b9fe169aad833b798025.tar.gz linux-3.10-67cc7e26a5c46508ee00b9fe169aad833b798025.tar.bz2 linux-3.10-67cc7e26a5c46508ee00b9fe169aad833b798025.zip |
PCI: remove add_to_failed_list()
Only one user; just use add_to_list instead.
Signed-off-by: Yinghai Lu <yinghai@kernel.org>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
-rw-r--r-- | drivers/pci/setup-bus.c | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/drivers/pci/setup-bus.c b/drivers/pci/setup-bus.c index ae0b1f2c9e0..090217afb4e 100644 --- a/drivers/pci/setup-bus.c +++ b/drivers/pci/setup-bus.c @@ -89,14 +89,6 @@ static int add_to_list(struct list_head *head, return 0; } -static void add_to_failed_list(struct list_head *head, - struct pci_dev *dev, struct resource *res) -{ - add_to_list(head, dev, res, - 0 /* dont care */, - 0 /* dont care */); -} - static void remove_from_list(struct list_head *head, struct resource *res) { @@ -302,8 +294,10 @@ static void assign_requested_resources_sorted(struct list_head *head, */ if (!((idx == PCI_ROM_RESOURCE) && (!(res->flags & IORESOURCE_ROM_ENABLE)))) - add_to_failed_list(fail_head, - dev_res->dev, res); + add_to_list(fail_head, + dev_res->dev, res, + 0 /* dont care */, + 0 /* dont care */); } reset_resource(res); } |