Skip to content

Commit

Permalink
fbdev/g364fb: fix build failure with mips
Browse files Browse the repository at this point in the history
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: 5011260 ("fbdev/g364fb: Use fbdev I/O helpers")
Suggested-by: Linus Torvalds <[email protected]>
Signed-off-by: Sudip Mukherjee <[email protected]>
Signed-off-by: Thomas Zimmermann <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
  • Loading branch information
sudipm-mukherjee authored and Thomas Zimmermann committed Sep 4, 2023
1 parent 978474d commit 45dc8fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/video/fbdev/g364fb.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 45dc8fc

Please sign in to comment.