2021-08-04 12:26:45

by Alexandre Belloni

[permalink] [raw]
Subject: [PATCH] PM / sleep: check RTC features instead of ops in suspend_test

Test RTC_FEATURE_ALARM instead of relying on ops->set_alarm to know whether
alarms are available.

Signed-off-by: Alexandre Belloni <[email protected]>
---
kernel/power/suspend_test.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kernel/power/suspend_test.c b/kernel/power/suspend_test.c
index e1ed58adb69e..d20526c5be15 100644
--- a/kernel/power/suspend_test.c
+++ b/kernel/power/suspend_test.c
@@ -129,7 +129,7 @@ static int __init has_wakealarm(struct device *dev, const void *data)
{
struct rtc_device *candidate = to_rtc_device(dev);

- if (!candidate->ops->set_alarm)
+ if (!test_bit(RTC_FEATURE_ALARM, candidate->features))
return 0;
if (!device_may_wakeup(candidate->dev.parent))
return 0;
--
2.31.1



2021-08-04 20:50:37

by Rafael J. Wysocki

[permalink] [raw]
Subject: Re: [PATCH] PM / sleep: check RTC features instead of ops in suspend_test

On Wed, Aug 4, 2021 at 12:44 PM Alexandre Belloni
<[email protected]> wrote:
>
> Test RTC_FEATURE_ALARM instead of relying on ops->set_alarm to know whether
> alarms are available.
>
> Signed-off-by: Alexandre Belloni <[email protected]>
> ---
> kernel/power/suspend_test.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/kernel/power/suspend_test.c b/kernel/power/suspend_test.c
> index e1ed58adb69e..d20526c5be15 100644
> --- a/kernel/power/suspend_test.c
> +++ b/kernel/power/suspend_test.c
> @@ -129,7 +129,7 @@ static int __init has_wakealarm(struct device *dev, const void *data)
> {
> struct rtc_device *candidate = to_rtc_device(dev);
>
> - if (!candidate->ops->set_alarm)
> + if (!test_bit(RTC_FEATURE_ALARM, candidate->features))
> return 0;
> if (!device_may_wakeup(candidate->dev.parent))
> return 0;
> --

Applied as 5.15 material, thanks!