lkml.org 
[lkml]   [2018]   [Jun]   [22]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
Subject[PATCH 3/3] block: Change simple_strtol() to kstrtol()
The usage of simple_strtol is discouraged, because
strtol() is obsolete. Instead kstrtol() should be
used to convert a string into a long integer.

Signed-off-by: Kitone Elvis Peter <elviskitone@gmail.com>
---
drivers/block/brd.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/block/brd.c b/drivers/block/brd.c
index e2a1278..4b7a28e 100644
--- a/drivers/block/brd.c
+++ b/drivers/block/brd.c
@@ -351,7 +351,7 @@ MODULE_ALIAS("rd");
/* Legacy boot options - nonmodular */
static int __init ramdisk_size(char *str)
{
- rd_size = simple_strtol(str, NULL, 0);
+ rd_size = kstrtol(str, NULL, 0);
return 1;
}
__setup("ramdisk_size=", ramdisk_size);
--
2.7.4
\
 
 \ /
  Last update: 2018-06-22 11:44    [W:0.799 / U:0.124 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site