lkml.org 
[lkml]   [2014]   [Apr]   [1]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH v2] avr32: replace simple_strtoul() with kstrtoul()
Around Mon 31 Mar 2014 20:42:42 -0400 or thereabout, Ramkumar Ramachandra wrote:
> simple_strtoul() is marked for obsoletion; use the newer and more
> pleasant kstrtoul() in its place.
>
> Cc: Alexey Dobriyan <adobriyan@gmail.com>
> Cc: Haavard Skinnemoen <hskinnemoen@gmail.com>
> Cc: Hans-Christian Egtvedt <egtvedt@samfundet.no>
> Signed-off-by: Ramkumar Ramachandra <artagnon@gmail.com>
> ---
> arch/avr32/kernel/cpu.c | 48 ++++++++++++++++++++++++++----------------------
> 1 file changed, 26 insertions(+), 22 deletions(-)
>
> diff --git a/arch/avr32/kernel/cpu.c b/arch/avr32/kernel/cpu.c

<snipp diff>

> @@ -61,11 +63,11 @@ static ssize_t store_pc0count(struct device *dev,
> const char *buf, size_t count)
> {
> unsigned long val;
> - char *endp;
> + int ret;
>
> - val = simple_strtoul(buf, &endp, 0);
> - if (endp == buf)
> - return -EINVAL;
> + ret = kstroul(buf, 0, &val);

I fixed this typo to kstrtoul.

<snipp diff>

--
mvh
Hans-Christian Egtvedt


\
 
 \ /
  Last update: 2014-04-01 11:06    [W:0.064 / U:0.092 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site