Skip to content

Commit b77505e

Browse files
superm1rafaeljw
authored andcommitted
platform/x86/amd: pmc: Use pm_pr_dbg() for suspend related messages
Using pm_pr_dbg() allows users to toggle `/sys/power/pm_debug_messages` as a single knob to turn on messages that amd-pmc can emit to aid in any s2idle debugging. Signed-off-by: Mario Limonciello <[email protected]> Acked-by: Hans de Goede <[email protected]> Signed-off-by: Rafael J. Wysocki <[email protected]>
1 parent c9a2364 commit b77505e

File tree

1 file changed

+2
-2
lines changed
  • drivers/platform/x86/amd

1 file changed

+2
-2
lines changed

drivers/platform/x86/amd/pmc.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -543,7 +543,7 @@ static int amd_pmc_idlemask_read(struct amd_pmc_dev *pdev, struct device *dev,
543543
}
544544

545545
if (dev)
546-
dev_dbg(pdev->dev, "SMU idlemask s0i3: 0x%x\n", val);
546+
pm_pr_dbg("SMU idlemask s0i3: 0x%x\n", val);
547547

548548
if (s)
549549
seq_printf(s, "SMU idlemask : 0x%x\n", val);
@@ -769,7 +769,7 @@ static int amd_pmc_verify_czn_rtc(struct amd_pmc_dev *pdev, u32 *arg)
769769

770770
*arg |= (duration << 16);
771771
rc = rtc_alarm_irq_enable(rtc_device, 0);
772-
dev_dbg(pdev->dev, "wakeup timer programmed for %lld seconds\n", duration);
772+
pm_pr_dbg("wakeup timer programmed for %lld seconds\n", duration);
773773

774774
return rc;
775775
}

0 commit comments

Comments
 (0)