From 102a0743326a03cd1a1202ceda21e175b7d3575c Mon Sep 17 00:00:00 2001 From: hc <hc@nodka.com> Date: Tue, 20 Feb 2024 01:20:52 +0000 Subject: [PATCH] add new system file --- kernel/drivers/rtc/rtc-core.h | 18 ------------------ 1 files changed, 0 insertions(+), 18 deletions(-) diff --git a/kernel/drivers/rtc/rtc-core.h b/kernel/drivers/rtc/rtc-core.h index 57a8a18..0abf989 100644 --- a/kernel/drivers/rtc/rtc-core.h +++ b/kernel/drivers/rtc/rtc-core.h @@ -40,27 +40,9 @@ #ifdef CONFIG_RTC_INTF_SYSFS const struct attribute_group **rtc_get_dev_attribute_groups(void); -int rtc_add_group(struct rtc_device *rtc, const struct attribute_group *grp); -int rtc_add_groups(struct rtc_device *rtc, const struct attribute_group **grps); #else static inline const struct attribute_group **rtc_get_dev_attribute_groups(void) { return NULL; } - -static inline -int rtc_add_group(struct rtc_device *rtc, const struct attribute_group *grp) -{ - return 0; -} - -static inline -int rtc_add_groups(struct rtc_device *rtc, const struct attribute_group **grps) -{ - return 0; -} -#endif - -#ifdef CONFIG_RTC_HCTOSYS -extern int rtc_hctosys(void); #endif -- Gitblit v1.6.2