diff options
| -rw-r--r-- | drivers/pci/hotplug/pciehp.h | 4 | ||||
| -rw-r--r-- | drivers/pci/hotplug/pciehp_hpc.c | 2 | ||||
| -rw-r--r-- | drivers/pci/hotplug/pciehprm_acpi.c | 4 | ||||
| -rw-r--r-- | drivers/pci/hotplug/pciehprm_nonacpi.c | 4 |
4 files changed, 7 insertions, 7 deletions
diff --git a/drivers/pci/hotplug/pciehp.h b/drivers/pci/hotplug/pciehp.h index e71f78318d6e..c42b68d3aa24 100644 --- a/drivers/pci/hotplug/pciehp.h +++ b/drivers/pci/hotplug/pciehp.h | |||
| @@ -191,8 +191,8 @@ extern u8 pciehp_handle_power_fault (u8 hp_slot, void *inst_id); | |||
| 191 | /* pci functions */ | 191 | /* pci functions */ |
| 192 | extern int pciehp_configure_device (struct slot *p_slot); | 192 | extern int pciehp_configure_device (struct slot *p_slot); |
| 193 | extern int pciehp_unconfigure_device (struct slot *p_slot); | 193 | extern int pciehp_unconfigure_device (struct slot *p_slot); |
| 194 | extern int get_hp_hw_control_from_firmware(struct pci_dev *dev); | 194 | extern int pciehp_get_hp_hw_control_from_firmware(struct pci_dev *dev); |
| 195 | extern void get_hp_params_from_firmware(struct pci_dev *dev, | 195 | extern void pciehp_get_hp_params_from_firmware(struct pci_dev *dev, |
| 196 | struct hotplug_params *hpp); | 196 | struct hotplug_params *hpp); |
| 197 | 197 | ||
| 198 | 198 | ||
diff --git a/drivers/pci/hotplug/pciehp_hpc.c b/drivers/pci/hotplug/pciehp_hpc.c index f2b9b7686f28..4a3cecca012c 100644 --- a/drivers/pci/hotplug/pciehp_hpc.c +++ b/drivers/pci/hotplug/pciehp_hpc.c | |||
| @@ -1418,7 +1418,7 @@ int pcie_init(struct controller * ctrl, struct pcie_device *dev) | |||
| 1418 | dbg("Bypassing BIOS check for pciehp use on %s\n", | 1418 | dbg("Bypassing BIOS check for pciehp use on %s\n", |
| 1419 | pci_name(ctrl->pci_dev)); | 1419 | pci_name(ctrl->pci_dev)); |
| 1420 | } else { | 1420 | } else { |
| 1421 | rc = get_hp_hw_control_from_firmware(ctrl->pci_dev); | 1421 | rc = pciehp_get_hp_hw_control_from_firmware(ctrl->pci_dev); |
| 1422 | if (rc) | 1422 | if (rc) |
| 1423 | goto abort_free_ctlr; | 1423 | goto abort_free_ctlr; |
| 1424 | } | 1424 | } |
diff --git a/drivers/pci/hotplug/pciehprm_acpi.c b/drivers/pci/hotplug/pciehprm_acpi.c index 4d013f86b1a5..ae244e218620 100644 --- a/drivers/pci/hotplug/pciehprm_acpi.c +++ b/drivers/pci/hotplug/pciehprm_acpi.c | |||
| @@ -169,7 +169,7 @@ static int is_root_bridge(acpi_handle handle) | |||
| 169 | return 0; | 169 | return 0; |
| 170 | } | 170 | } |
| 171 | 171 | ||
| 172 | int get_hp_hw_control_from_firmware(struct pci_dev *dev) | 172 | int pciehp_get_hp_hw_control_from_firmware(struct pci_dev *dev) |
| 173 | { | 173 | { |
| 174 | acpi_status status; | 174 | acpi_status status; |
| 175 | acpi_handle chandle, handle = DEVICE_ACPI_HANDLE(&(dev->dev)); | 175 | acpi_handle chandle, handle = DEVICE_ACPI_HANDLE(&(dev->dev)); |
| @@ -228,7 +228,7 @@ int get_hp_hw_control_from_firmware(struct pci_dev *dev) | |||
| 228 | return -1; | 228 | return -1; |
| 229 | } | 229 | } |
| 230 | 230 | ||
| 231 | void get_hp_params_from_firmware(struct pci_dev *dev, | 231 | void pciehp_get_hp_params_from_firmware(struct pci_dev *dev, |
| 232 | struct hotplug_params *hpp) | 232 | struct hotplug_params *hpp) |
| 233 | { | 233 | { |
| 234 | acpi_status status = AE_NOT_FOUND; | 234 | acpi_status status = AE_NOT_FOUND; |
diff --git a/drivers/pci/hotplug/pciehprm_nonacpi.c b/drivers/pci/hotplug/pciehprm_nonacpi.c index 6447642f78c5..29180dfe8493 100644 --- a/drivers/pci/hotplug/pciehprm_nonacpi.c +++ b/drivers/pci/hotplug/pciehprm_nonacpi.c | |||
| @@ -35,13 +35,13 @@ | |||
| 35 | #include <linux/slab.h> | 35 | #include <linux/slab.h> |
| 36 | #include "pciehp.h" | 36 | #include "pciehp.h" |
| 37 | 37 | ||
| 38 | void get_hp_params_from_firmware(struct pci_dev *dev, | 38 | void pciehp_get_hp_params_from_firmware(struct pci_dev *dev, |
| 39 | struct hotplug_params *hpp) | 39 | struct hotplug_params *hpp) |
| 40 | { | 40 | { |
| 41 | return; | 41 | return; |
| 42 | } | 42 | } |
| 43 | 43 | ||
| 44 | int get_hp_hw_control_from_firmware(struct pci_dev *dev) | 44 | int pciehp_get_hp_hw_control_from_firmware(struct pci_dev *dev) |
| 45 | { | 45 | { |
| 46 | return 0; | 46 | return 0; |
| 47 | } | 47 | } |
