The patch titled Subject: rtc: add ioctl to get/clear battery low voltage status has been added to the -mm tree. Its filename is rtc-add-ioctl-to-get-clear-battery-low-voltage-status.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Alexander Stein <alexander.stein@xxxxxxxxxxxxxxxxxxxxx> Subject: rtc: add ioctl to get/clear battery low voltage status Currently there is no generic way to get the RTC battery status within an application. So add an ioctl to read the status bit. The idea is that the bit is set once a low voltage is detected. It stays there until it is reset using the RTC_VL_CLR ioctl. Signed-off-by: Alexander Stein <alexander.stein@xxxxxxxxxxxxxxxxxxxxx> Cc: Alessandro Zummo <a.zummo@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/rtc.h | 3 +++ 1 file changed, 3 insertions(+) diff -puN include/linux/rtc.h~rtc-add-ioctl-to-get-clear-battery-low-voltage-status include/linux/rtc.h --- a/include/linux/rtc.h~rtc-add-ioctl-to-get-clear-battery-low-voltage-status +++ a/include/linux/rtc.h @@ -91,6 +91,9 @@ struct rtc_pll_info { #define RTC_PLL_GET _IOR('p', 0x11, struct rtc_pll_info) /* Get PLL correction */ #define RTC_PLL_SET _IOW('p', 0x12, struct rtc_pll_info) /* Set PLL correction */ +#define RTC_VL_READ _IOR('p', 0x13, int) /* Voltage low detector */ +#define RTC_VL_CLR _IO('p', 0x14) /* Clear voltage low information */ + /* interrupt flags */ #define RTC_IRQF 0x80 /* Any of the following is active */ #define RTC_PF 0x40 /* Periodic interrupt */ _ Subject: Subject: rtc: add ioctl to get/clear battery low voltage status Patches currently in -mm which might be from alexander.stein@xxxxxxxxxxxxxxxxxxxxx are rtc-add-ioctl-to-get-clear-battery-low-voltage-status.patch rtc-pcf8563-add-rtc_vl_read-rtc_vl_clr-ioctl-feature.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html