Skip to content

Commit 0e00789

Browse files
committed
sh: mach-sh7763rdp: Assign FB_MODE_IS_UNKNOWN to struct fb_videomode.flag
Assign FB_MODE_IS_UNKNOWN to sh7763fb_videomode.flag instead of FBINFO_FLAG_DEFAULT. Both are 0, so the stored value does not change. FBINFO_FLAG_DEFAULT is a flag for a framebuffer in struct fb_info. Flags for videomodes are prefixed with FB_MODE_. v3: * include board name in commit message (Adrian) v2: * assign FB_MODE_IS_UNKNOWN (Adrian) Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de> Acked-by: Sam Ravnborg <sam@ravnborg.org> Acked-by: John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de> Cc: Yoshinori Sato <ysato@users.sourceforge.jp> Cc: Rich Felker <dalias@libc.org> Cc: John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de> Link: https://patchwork.freedesktop.org/patch/msgid/20230715185343.7193-9-tzimmermann@suse.de
1 parent 050bb58 commit 0e00789

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • arch/sh/boards/mach-sh7763rdp

arch/sh/boards/mach-sh7763rdp/setup.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ static struct fb_videomode sh7763fb_videomode = {
119119
.vsync_len = 1,
120120
.sync = 0,
121121
.vmode = FB_VMODE_NONINTERLACED,
122-
.flag = FBINFO_FLAG_DEFAULT,
122+
.flag = FB_MODE_IS_UNKNOWN,
123123
};
124124

125125
static struct sh7760fb_platdata sh7763fb_def_pdata = {

0 commit comments

Comments
 (0)