staging/speakup: Replaced deprecated function

Replaced simple_strtol() function with kstrtol() function
in main.c

Signed-off-by: Lisa Nguyen <lisa@xenapiadmin.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Lisa Nguyen 2013-05-17 11:52:28 -07:00 committed by Greg Kroah-Hartman
parent 69d8ba5659
commit a87af7c58b
1 changed files with 1 additions and 1 deletions

View File

@ -1892,7 +1892,7 @@ oops:
spk_special_handler = NULL;
return 1;
}
go_pos = simple_strtol(goto_buf, &cp, 10);
go_pos = kstrtol(goto_buf, &cp, 10);
goto_pos = (u_long) go_pos;
if (*cp == 'x') {
if (*goto_buf < '0')