diff options
author | 2025-03-05 23:16:59 +0100 | |
---|---|---|
committer | 2025-03-07 22:46:29 +0100 | |
commit | 8a9b1751b26cf04dabd903e32d0cc9c765fb3116 (patch) | |
tree | 7cb13ef3b79b5a28a052f6373c6fa97dbd95efb1 | |
parent | rtc: ds1307: stop disabling alarms on probe (diff) | |
download | wireguard-linux-8a9b1751b26cf04dabd903e32d0cc9c765fb3116.tar.xz wireguard-linux-8a9b1751b26cf04dabd903e32d0cc9c765fb3116.zip |
rtc: pl031: document struct pl031_vendor_data members
Document the range related members of struct pl031_vendor_data.
Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202503011015.SYvdddTc-lkp@intel.com/
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Link: https://lore.kernel.org/r/20250305221659.1153495-1-alexandre.belloni@bootlin.com
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Diffstat (limited to '')
-rw-r--r-- | drivers/rtc/rtc-pl031.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/rtc/rtc-pl031.c b/drivers/rtc/rtc-pl031.c index 47bfc5395e59..eab39dfa4e5f 100644 --- a/drivers/rtc/rtc-pl031.c +++ b/drivers/rtc/rtc-pl031.c @@ -74,6 +74,8 @@ * @st_weekday: if this is an ST Microelectronics silicon version that need * the weekday fix * @irqflags: special IRQ flags per variant + * @range_min: minimum date/time supported by the RTC + * @range_max: maximum date/time supported by the RTC */ struct pl031_vendor_data { struct rtc_class_ops ops; |