Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

fbdev/g364fb: fix build failure with mips

Fix the typo which resulted in the driver using FB_DEFAULT_IOMEM_HELPERS
instead of FB_DEFAULT_IOMEM_OPS as the fbdev I/O helpers.

Fixes: 501126083855 ("fbdev/g364fb: Use fbdev I/O helpers")
Suggested-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Sudip Mukherjee and committed by
Linus Torvalds
8df0f84c 0468be89

+1 -1
+1 -1
drivers/video/fbdev/g364fb.c
··· 112 112 113 113 static const struct fb_ops g364fb_ops = { 114 114 .owner = THIS_MODULE, 115 - FB_DEFAULT_IOMEM_HELPERS, 115 + FB_DEFAULT_IOMEM_OPS, 116 116 .fb_setcolreg = g364fb_setcolreg, 117 117 .fb_pan_display = g364fb_pan_display, 118 118 .fb_blank = g364fb_blank,