fbdev: aty: use true, false for bool variables in atyfb_base.c
Fix the following coccicheck warning: drivers/video/fbdev/aty/atyfb_base.c:3822:3-10: WARNING: Assignment of 0/1 to bool variable drivers/video/fbdev/aty/atyfb_base.c:3824:3-9: WARNING: Assignment of 0/1 to bool variable Signed-off-by: Jason Yan <yanaijie@huawei.com> Signed-off-by: Sam Ravnborg <sam@ravnborg.org> Link: https://patchwork.freedesktop.org/patch/msgid/20200422071854.513-1-yanaijie@huawei.com
This commit is contained in:
parent
dbc7ece12a
commit
d163a95cf0
@ -3819,9 +3819,9 @@ static int __init atyfb_setup(char *options)
|
|||||||
|
|
||||||
while ((this_opt = strsep(&options, ",")) != NULL) {
|
while ((this_opt = strsep(&options, ",")) != NULL) {
|
||||||
if (!strncmp(this_opt, "noaccel", 7)) {
|
if (!strncmp(this_opt, "noaccel", 7)) {
|
||||||
noaccel = 1;
|
noaccel = true;
|
||||||
} else if (!strncmp(this_opt, "nomtrr", 6)) {
|
} else if (!strncmp(this_opt, "nomtrr", 6)) {
|
||||||
nomtrr = 1;
|
nomtrr = true;
|
||||||
} else if (!strncmp(this_opt, "vram:", 5))
|
} else if (!strncmp(this_opt, "vram:", 5))
|
||||||
vram = simple_strtoul(this_opt + 5, NULL, 0);
|
vram = simple_strtoul(this_opt + 5, NULL, 0);
|
||||||
else if (!strncmp(this_opt, "pll:", 4))
|
else if (!strncmp(this_opt, "pll:", 4))
|
||||||
|
Loading…
Reference in New Issue
Block a user