diff options
author | Jiang Liu <liuj97@gmail.com> | 2013-05-25 09:48:36 -0400 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2013-06-14 19:39:20 -0400 |
commit | d35329d9f17f05277f2718eb54402dea3e833d19 (patch) | |
tree | d29ba6dec8a39b3013b472fa19efcb238a87052b /drivers/pci | |
parent | c13e396ebfed48948f3204db0e7def95080cd660 (diff) |
PCI: Drop redundant setting of bus->is_added in virtfn_add_bus()
The flag pci_bus->is_added is used to guard invocation of
pcibios_fixup_bus(pci_bus). When virtfn_add_bus() is called, the
pci_bus->is_added flag has already been set, so remove the redundant
bus->is_added = 1;
Signed-off-by: Jiang Liu <jiang.liu@huawei.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Cc: Donald Dutile <ddutile@redhat.com>
Cc: Yinghai Lu <yinghai@kernel.org>
Cc: Ram Pai <linuxram@us.ibm.com>
Diffstat (limited to 'drivers/pci')
-rw-r--r-- | drivers/pci/iov.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/pci/iov.c b/drivers/pci/iov.c index 2652ca00fae7..8f1e1174b71f 100644 --- a/drivers/pci/iov.c +++ b/drivers/pci/iov.c | |||
@@ -47,7 +47,6 @@ static struct pci_bus *virtfn_add_bus(struct pci_bus *bus, int busnr) | |||
47 | return NULL; | 47 | return NULL; |
48 | 48 | ||
49 | pci_bus_insert_busn_res(child, busnr, busnr); | 49 | pci_bus_insert_busn_res(child, busnr, busnr); |
50 | bus->is_added = 1; | ||
51 | 50 | ||
52 | return child; | 51 | return child; |
53 | } | 52 | } |