tty: replace strict_strtoul() with kstrtoul()

The usage of strict_strtoul() is not preferred, because
strict_strtoul() is obsolete. Thus, kstrtoul() should be
used.

Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Jingoo Han 2013-06-01 16:30:06 +09:00 коммит произвёл Greg Kroah-Hartman
Родитель 1f48c499df
Коммит 86b40567b9
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -1328,7 +1328,7 @@ out_error:
*/
static int __init hvc_iucv_config(char *val)
{
return strict_strtoul(val, 10, &hvc_iucv_devices);
return kstrtoul(val, 10, &hvc_iucv_devices);
}

Просмотреть файл

@ -932,7 +932,7 @@ static int sysrq_reset_seq_param_set(const char *buffer,
unsigned long val;
int error;
error = strict_strtoul(buffer, 0, &val);
error = kstrtoul(buffer, 0, &val);
if (error < 0)
return error;