diff options
author | Alexandre Belloni <alexandre.belloni@bootlin.com> | 2018-09-19 03:13:21 +0200 |
---|---|---|
committer | Alexandre Belloni <alexandre.belloni@bootlin.com> | 2018-09-28 14:20:59 +0200 |
commit | eb2bccb70b979d996ecb769d692b92ff12eabbb7 (patch) | |
tree | 2b690247a6cb61d9da7151ccd184978abda27811 /drivers/rtc | |
parent | db7a67b9c3482bcc8314e42647f60b6f77f5afe4 (diff) | |
download | talos-op-linux-eb2bccb70b979d996ecb769d692b92ff12eabbb7.tar.gz talos-op-linux-eb2bccb70b979d996ecb769d692b92ff12eabbb7.zip |
rtc: move rtc_add_group/s definitions
Move rtc_add_group and rtc_add_groups definition to rtc.h that is available
for all RTC drivers.
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Diffstat (limited to 'drivers/rtc')
-rw-r--r-- | drivers/rtc/rtc-core.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/drivers/rtc/rtc-core.h b/drivers/rtc/rtc-core.h index ccc17a2e293d..0abf98983e13 100644 --- a/drivers/rtc/rtc-core.h +++ b/drivers/rtc/rtc-core.h @@ -40,23 +40,9 @@ static inline void rtc_proc_del_device(struct rtc_device *rtc) #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 |