diff options
author | 2021-10-26 12:14:42 -0500 | |
---|---|---|
committer | 2021-10-27 16:07:26 +0200 | |
commit | 16a035a314060c4b12f70284302df448feb11bec (patch) | |
tree | 8205c3b29369cf8db45f825dd531a99315238302 | |
parent | platform/x86: amd-pmc: fix compilation without CONFIG_RTC_SYSTOHC_DEVICE (diff) | |
download | wireguard-linux-16a035a314060c4b12f70284302df448feb11bec.tar.xz wireguard-linux-16a035a314060c4b12f70284302df448feb11bec.zip |
platform/x86: amd-pmc: Downgrade dev_info message to dev_dbg
For the majority of users this information will not be informative
as they've chosen to program the RTC before going to sleep.
Suggested-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Mario Limonciello <mario.limonciello@amd.com>
Link: https://lore.kernel.org/r/20211026171443.289-2-mario.limonciello@amd.com
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Diffstat (limited to '')
-rw-r--r-- | drivers/platform/x86/amd-pmc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/x86/amd-pmc.c b/drivers/platform/x86/amd-pmc.c index b8d77a18e95a..81f3b9d79f43 100644 --- a/drivers/platform/x86/amd-pmc.c +++ b/drivers/platform/x86/amd-pmc.c @@ -457,7 +457,7 @@ static int amd_pmc_verify_czn_rtc(struct amd_pmc_dev *pdev, u32 *arg) *arg |= (duration << 16); rc = rtc_alarm_irq_enable(rtc_device, 0); - dev_info(pdev->dev, "wakeup timer programmed for %lld seconds\n", duration); + dev_dbg(pdev->dev, "wakeup timer programmed for %lld seconds\n", duration); return rc; } |