pcf2123 registers store their values in bcd. sysfs sensibly displays them in hexidecimal. Up to now, the sysfs store functions only accept base 10, which makes no sense.
Add support for hexidecimal without removing base10 support. Signed-off-by: Joshua Clayton <[email protected]> --- drivers/rtc/rtc-pcf2123.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/rtc/rtc-pcf2123.c b/drivers/rtc/rtc-pcf2123.c index 4964d5c..6701e6d 100644 --- a/drivers/rtc/rtc-pcf2123.c +++ b/drivers/rtc/rtc-pcf2123.c @@ -178,7 +178,7 @@ static ssize_t pcf2123_store(struct device *dev, struct device_attribute *attr, if (ret) return ret; - ret = kstrtoul(buffer, 10, &val); + ret = kstrtoul(buffer, 0, &val); if (ret) return ret; -- 2.5.0 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

