platform/x86: amd-pmc: Downgrade dev_info message to dev_dbg
authorMario Limonciello <mario.limonciello@amd.com>
Tue, 26 Oct 2021 17:14:42 +0000 (12:14 -0500)
committerHans de Goede <hdegoede@redhat.com>
Wed, 27 Oct 2021 14:07:26 +0000 (16:07 +0200)
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>
drivers/platform/x86/amd-pmc.c

index b8d77a18e95a723743b84648bdad4c1d2f36cf35..81f3b9d79f432d5600a3d057706a93cae162cc62 100644 (file)
@@ -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;
 }