aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pci/hotplug/pciehp_ctrl.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/pci/hotplug/pciehp_ctrl.c')
-rw-r--r--drivers/pci/hotplug/pciehp_ctrl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/pci/hotplug/pciehp_ctrl.c b/drivers/pci/hotplug/pciehp_ctrl.c
index 5bca9212f5e1..072befa345a7 100644
--- a/drivers/pci/hotplug/pciehp_ctrl.c
+++ b/drivers/pci/hotplug/pciehp_ctrl.c
@@ -655,7 +655,7 @@ static void interrupt_event_handler(struct controller *ctrl)
655 warn("Not a valid state\n"); 655 warn("Not a valid state\n");
656 return; 656 return;
657 } 657 }
658 info(msg_button_cancel, slot_name(p_slot)); 658 info("PCI slot #%s - action canceled due to button press.\n", slot_name(p_slot));
659 p_slot->state = STATIC_STATE; 659 p_slot->state = STATIC_STATE;
660 } 660 }
661 /* ***********Button Pressed (No action on 1st press...) */ 661 /* ***********Button Pressed (No action on 1st press...) */
@@ -668,12 +668,12 @@ static void interrupt_event_handler(struct controller *ctrl)
668 /* slot is on */ 668 /* slot is on */
669 dbg("slot is on\n"); 669 dbg("slot is on\n");
670 p_slot->state = BLINKINGOFF_STATE; 670 p_slot->state = BLINKINGOFF_STATE;
671 info(msg_button_off, slot_name(p_slot)); 671 info("PCI slot #%s - powering off due to button press.\n", slot_name(p_slot));
672 } else { 672 } else {
673 /* slot is off */ 673 /* slot is off */
674 dbg("slot is off\n"); 674 dbg("slot is off\n");
675 p_slot->state = BLINKINGON_STATE; 675 p_slot->state = BLINKINGON_STATE;
676 info(msg_button_on, slot_name(p_slot)); 676 info("PCI slot #%s - powering on due to button press.\n", slot_name(p_slot));
677 } 677 }
678 678
679 /* Wait for exclusive access to hardware */ 679 /* Wait for exclusive access to hardware */