Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752775AbbLDOUU (ORCPT ); Fri, 4 Dec 2015 09:20:20 -0500 Received: from mail-wm0-f52.google.com ([74.125.82.52]:38534 "EHLO mail-wm0-f52.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750907AbbLDOUR (ORCPT ); Fri, 4 Dec 2015 09:20:17 -0500 From: LABBE Corentin To: alexandre.belloni@free-electrons.com, a.zummo@towertech.it Cc: LABBE Corentin , linux-kernel@vger.kernel.org, rtc-linux@googlegroups.com Subject: [PATCH] rtc: Replace simple_strtoul by kstrtoul Date: Fri, 4 Dec 2015 15:19:39 +0100 Message-Id: <1449238780-31110-1-git-send-email-clabbe.montjoie@gmail.com> X-Mailer: git-send-email 2.4.10 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1001 Lines: 34 The simple_strtoul function is obsolete. This patch replace it by kstrtoul. Signed-off-by: LABBE Corentin --- drivers/rtc/rtc-sysfs.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/drivers/rtc/rtc-sysfs.c b/drivers/rtc/rtc-sysfs.c index 7273855..a023f63 100644 --- a/drivers/rtc/rtc-sysfs.c +++ b/drivers/rtc/rtc-sysfs.c @@ -91,7 +91,12 @@ max_user_freq_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t n) { struct rtc_device *rtc = to_rtc_device(dev); - unsigned long val = simple_strtoul(buf, NULL, 0); + unsigned long val; + int err; + + err = kstrtoul(buf, 0, &val); + if (err) + return err; if (val >= 4096 || val == 0) return -EINVAL; -- 2.4.10 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/