diff options
author | Kenji Kaneshige <kaneshige.kenji@jp.fujitsu.com> | 2009-09-15 04:28:28 -0400 |
---|---|---|
committer | Jesse Barnes <jbarnes@virtuousgeek.org> | 2009-09-17 13:06:02 -0400 |
commit | a2359a334fb2c89347e031c4494282e6756e9ae7 (patch) | |
tree | 9ac5e61752318def916d47fd0ea27b62b19dbc3c /drivers/pci/hotplug/pciehp_core.c | |
parent | 0e3631593c38e8a09bf58a46c6f6a3426d3ad0f0 (diff) |
PCI: pciehp: remove slot_device_offset field
Since the device number of the hot-slot under the PCIe downstream port
is always 0, the slot_device_offset field in the slot is meaningless
and we don't need it.
Acked-by: Alex Chiang <achiang@hp.com>
Signed-off-by: Kenji Kaneshige <kaneshige.kenji@jp.fujitsu.com>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Diffstat (limited to 'drivers/pci/hotplug/pciehp_core.c')
-rw-r--r-- | drivers/pci/hotplug/pciehp_core.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/pci/hotplug/pciehp_core.c b/drivers/pci/hotplug/pciehp_core.c index 3adca3cb502a..209dd9de9a22 100644 --- a/drivers/pci/hotplug/pciehp_core.c +++ b/drivers/pci/hotplug/pciehp_core.c | |||
@@ -123,11 +123,9 @@ static int init_slot(struct controller *ctrl) | |||
123 | slot->hotplug_slot = hotplug; | 123 | slot->hotplug_slot = hotplug; |
124 | snprintf(name, SLOT_NAME_SIZE, "%u", slot->number); | 124 | snprintf(name, SLOT_NAME_SIZE, "%u", slot->number); |
125 | 125 | ||
126 | ctrl_dbg(ctrl, "Registering domain:bus:dev=%04x:%02x:00 " | 126 | ctrl_dbg(ctrl, "Registering domain:bus:dev=%04x:%02x:00 sun=%x\n", |
127 | "sun=%x slot_device_offset=%x\n", | ||
128 | pci_domain_nr(ctrl->pci_dev->subordinate), | 127 | pci_domain_nr(ctrl->pci_dev->subordinate), |
129 | ctrl->pci_dev->subordinate->number, | 128 | ctrl->pci_dev->subordinate->number, slot->number); |
130 | slot->number, ctrl->slot_device_offset); | ||
131 | retval = pci_hp_register(hotplug, | 129 | retval = pci_hp_register(hotplug, |
132 | ctrl->pci_dev->subordinate, 0, name); | 130 | ctrl->pci_dev->subordinate, 0, name); |
133 | if (retval) { | 131 | if (retval) { |