Commit 8df0f84c authored by Sudip Mukherjee's avatar Sudip Mukherjee Committed by Linus Torvalds
Browse files

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: 50112608 ("fbdev/g364fb: Use fbdev I/O helpers")
Suggested-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: default avatarSudip Mukherjee <sudipm.mukherjee@gmail.com>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 0468be89
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -112,7 +112,7 @@ static int g364fb_blank(int blank, struct fb_info *info);

static const struct fb_ops g364fb_ops = {
	.owner		= THIS_MODULE,
	FB_DEFAULT_IOMEM_HELPERS,
	FB_DEFAULT_IOMEM_OPS,
	.fb_setcolreg	= g364fb_setcolreg,
	.fb_pan_display	= g364fb_pan_display,
	.fb_blank	= g364fb_blank,