Skip to content

Commit 7f757cb

Browse files
bzolniersravnborg
authored andcommitted
video: fbdev: uvesafb: fix "noblank" option handling
Fix the recent regression. Fixes: dbc7ece ("video: uvesafb: use true,false for bool variables") Cc: Jason Yan <[email protected]> Reviewed-by: Sam Ravnborg <[email protected]> Signed-off-by: Bartlomiej Zolnierkiewicz <[email protected]> Signed-off-by: Sam Ravnborg <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
1 parent 8a4f5e1 commit 7f757cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/video/fbdev/uvesafb.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1836,7 +1836,7 @@ static int uvesafb_setup(char *options)
18361836
else if (!strcmp(this_opt, "noedid"))
18371837
noedid = true;
18381838
else if (!strcmp(this_opt, "noblank"))
1839-
blank = true;
1839+
blank = false;
18401840
else if (!strncmp(this_opt, "vtotal:", 7))
18411841
vram_total = simple_strtoul(this_opt + 7, NULL, 0);
18421842
else if (!strncmp(this_opt, "vremap:", 7))

0 commit comments

Comments
 (0)