diff options
author | Kenji Kaneshige <kaneshige.kenji@jp.fujitsu.com> | 2008-05-28 14:56:00 +0900 |
---|---|---|
committer | Jesse Barnes <jbarnes@virtuousgeek.org> | 2008-06-10 10:59:52 -0700 |
commit | b143b3cc82fac459feb1abdffb1d77be9805adaa (patch) | |
tree | 807c94583d98721d82eb7e1c71e32a738ac4b37d /drivers/pci | |
parent | e3f2baebf4209b5927e23fa65d5977d31db936b3 (diff) | |
download | linux-stable-b143b3cc82fac459feb1abdffb1d77be9805adaa.tar.gz linux-stable-b143b3cc82fac459feb1abdffb1d77be9805adaa.tar.bz2 linux-stable-b143b3cc82fac459feb1abdffb1d77be9805adaa.zip |
pciehp: remove redundant pci_dev initialization
Remove the redundant initialization of pci_dev member of struct
controller in pciehp_probe(). It is initialized in pcie_init().
Signed-off-by: Kenji Kaneshige <kaneshige.kenji@jp.fujitsu.com>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Diffstat (limited to 'drivers/pci')
-rw-r--r-- | drivers/pci/hotplug/pciehp_core.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/pci/hotplug/pciehp_core.c b/drivers/pci/hotplug/pciehp_core.c index 86d04c694000..54553b187b19 100644 --- a/drivers/pci/hotplug/pciehp_core.c +++ b/drivers/pci/hotplug/pciehp_core.c @@ -454,7 +454,6 @@ static int pciehp_probe(struct pcie_device *dev, const struct pcie_port_service_ INIT_LIST_HEAD(&ctrl->slot_list); pdev = dev->port; - ctrl->pci_dev = pdev; rc = pcie_init(ctrl, dev); if (rc) { |