aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video/fsl-diu-fb.c
diff options
context:
space:
mode:
authorJingoo Han <jg1.han@samsung.com>2013-06-01 03:31:21 -0400
committerTomi Valkeinen <tomi.valkeinen@ti.com>2013-06-26 08:19:48 -0400
commitf5725af59c7dfd00809eb08ad5602b1fba58bc0f (patch)
tree40fac06873b255a6dd4ca6cf9e73d0a1462c60c1 /drivers/video/fsl-diu-fb.c
parente0f3aab9105a42fa5e111a7d988b25937833a727 (diff)
video: 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: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video/fsl-diu-fb.c')
-rw-r--r--drivers/video/fsl-diu-fb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/fsl-diu-fb.c b/drivers/video/fsl-diu-fb.c
index 6c278056fc60..6dd72250111e 100644
--- a/drivers/video/fsl-diu-fb.c
+++ b/drivers/video/fsl-diu-fb.c
@@ -469,7 +469,7 @@ static enum fsl_diu_monitor_port fsl_diu_name_to_port(const char *s)
469 unsigned long val; 469 unsigned long val;
470 470
471 if (s) { 471 if (s) {
472 if (!strict_strtoul(s, 10, &val) && (val <= 2)) 472 if (!kstrtoul(s, 10, &val) && (val <= 2))
473 port = (enum fsl_diu_monitor_port) val; 473 port = (enum fsl_diu_monitor_port) val;
474 else if (strncmp(s, "lvds", 4) == 0) 474 else if (strncmp(s, "lvds", 4) == 0)
475 port = FSL_DIU_PORT_LVDS; 475 port = FSL_DIU_PORT_LVDS;
@@ -1853,7 +1853,7 @@ static int __init fsl_diu_setup(char *options)
1853 if (!strncmp(opt, "monitor=", 8)) { 1853 if (!strncmp(opt, "monitor=", 8)) {
1854 monitor_port = fsl_diu_name_to_port(opt + 8); 1854 monitor_port = fsl_diu_name_to_port(opt + 8);
1855 } else if (!strncmp(opt, "bpp=", 4)) { 1855 } else if (!strncmp(opt, "bpp=", 4)) {
1856 if (!strict_strtoul(opt + 4, 10, &val)) 1856 if (!kstrtoul(opt + 4, 10, &val))
1857 default_bpp = val; 1857 default_bpp = val;
1858 } else 1858 } else
1859 fb_mode = opt; 1859 fb_mode = opt;