staging: panel: Fixed checkpatch warning about simple_strtoul()
Fixed the checkpatch warning about sing simple_strtoul instead of kstrtoul() in panel.c. Signed-off-by: Pelle Windestam <iceaway@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
3cecd9203c
commit
129957069e
1 changed files with 4 additions and 6 deletions
|
@ -1179,16 +1179,14 @@ static inline int handle_lcd_special_code(void)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
while (*esc) {
|
while (*esc) {
|
||||||
char *endp;
|
|
||||||
|
|
||||||
if (*esc == 'x') {
|
if (*esc == 'x') {
|
||||||
esc++;
|
esc++;
|
||||||
lcd_addr_x = simple_strtoul(esc, &endp, 10);
|
if (kstrtoul(esc, 10, &lcd_addr_x) < 0)
|
||||||
esc = endp;
|
break;
|
||||||
} else if (*esc == 'y') {
|
} else if (*esc == 'y') {
|
||||||
esc++;
|
esc++;
|
||||||
lcd_addr_y = simple_strtoul(esc, &endp, 10);
|
if (kstrtoul(esc, 10, &lcd_addr_y) < 0)
|
||||||
esc = endp;
|
break;
|
||||||
} else
|
} else
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue