This patch fixes the typo in dbg_ctrl() in pciehp_hpc.c. Signed-off-by: Kenji Kaneshige Signed-off-by: Kristen Carlson Accardi --- drivers/pci/hotplug/pciehp_hpc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: linux-2.6.25/drivers/pci/hotplug/pciehp_hpc.c =================================================================== --- linux-2.6.25.orig/drivers/pci/hotplug/pciehp_hpc.c +++ linux-2.6.25/drivers/pci/hotplug/pciehp_hpc.c @@ -1118,7 +1118,7 @@ static inline void dbg_ctrl(struct contr dbg(" EMI Present : %3s\n", EMI(ctrl) ? "yes" : "no"); pciehp_readw(ctrl, SLOTSTATUS, ®16); dbg("Slot Status : 0x%04x\n", reg16); - pciehp_readw(ctrl, SLOTSTATUS, ®16); + pciehp_readw(ctrl, SLOTCTRL, ®16); dbg("Slot Control : 0x%04x\n", reg16); }