diff options
-rw-r--r-- | drivers/rtc/rtc-sysfs.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/drivers/rtc/rtc-sysfs.c b/drivers/rtc/rtc-sysfs.c index 69df94b44841..6cad0841f3c4 100644 --- a/drivers/rtc/rtc-sysfs.c +++ b/drivers/rtc/rtc-sysfs.c | |||
@@ -73,11 +73,35 @@ rtc_sysfs_show_since_epoch(struct device *dev, struct device_attribute *attr, | |||
73 | return retval; | 73 | return retval; |
74 | } | 74 | } |
75 | 75 | ||
76 | static ssize_t | ||
77 | rtc_sysfs_show_max_user_freq(struct device *dev, struct device_attribute *attr, | ||
78 | char *buf) | ||
79 | { | ||
80 | return sprintf(buf, "%d\n", to_rtc_device(dev)->max_user_freq); | ||
81 | } | ||
82 | |||
83 | static ssize_t | ||
84 | rtc_sysfs_set_max_user_freq(struct device *dev, struct device_attribute *attr, | ||
85 | const char *buf, size_t n) | ||
86 | { | ||
87 | struct rtc_device *rtc = to_rtc_device(dev); | ||
88 | unsigned long val = simple_strtoul(buf, NULL, 0); | ||
89 | |||
90 | if (val >= 4096 || val == 0) | ||
91 | return -EINVAL; | ||
92 | |||
93 | rtc->max_user_freq = (int)val; | ||
94 | |||
95 | return n; | ||
96 | } | ||
97 | |||
76 | static struct device_attribute rtc_attrs[] = { | 98 | static struct device_attribute rtc_attrs[] = { |
77 | __ATTR(name, S_IRUGO, rtc_sysfs_show_name, NULL), | 99 | __ATTR(name, S_IRUGO, rtc_sysfs_show_name, NULL), |
78 | __ATTR(date, S_IRUGO, rtc_sysfs_show_date, NULL), | 100 | __ATTR(date, S_IRUGO, rtc_sysfs_show_date, NULL), |
79 | __ATTR(time, S_IRUGO, rtc_sysfs_show_time, NULL), | 101 | __ATTR(time, S_IRUGO, rtc_sysfs_show_time, NULL), |
80 | __ATTR(since_epoch, S_IRUGO, rtc_sysfs_show_since_epoch, NULL), | 102 | __ATTR(since_epoch, S_IRUGO, rtc_sysfs_show_since_epoch, NULL), |
103 | __ATTR(max_user_freq, S_IRUGO | S_IWUSR, rtc_sysfs_show_max_user_freq, | ||
104 | rtc_sysfs_set_max_user_freq), | ||
81 | { }, | 105 | { }, |
82 | }; | 106 | }; |
83 | 107 | ||