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

fbdev: i810: include i810_main.h in i810_dvt.c

Building with W=1 shows that a header needs to be included to
make the prototypes visible:

drivers/video/fbdev/i810/i810_dvt.c:194:6: error: no previous prototype for 'round_off_xres' [-Werror=missing-prototypes]
drivers/video/fbdev/i810/i810_dvt.c:233:6: error: no previous prototype for 'i810fb_encode_registers' [-Werror=missing-prototypes]
drivers/video/fbdev/i810/i810_dvt.c:245:6: error: no previous prototype for 'i810fb_fill_var_timings' [-Werror=missing-prototypes]
drivers/video/fbdev/i810/i810_dvt.c:279:5: error: no previous prototype for 'i810_get_watermark' [-Werror=missing-prototypes]

Adding the header leads to another warning from a mismatched
prototype, so fix this as well:

drivers/video/fbdev/i810/i810_dvt.c:280:5: error: conflicting types for 'i810_get_watermark'; have 'u32(struct fb_var_screeninfo *,

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Helge Deller <deller@gmx.de>

authored by

Arnd Bergmann and committed by
Helge Deller
f6cd4c96 19abb458

+2 -1
+2 -1
drivers/video/fbdev/i810/i810_dvt.c
··· 14 14 15 15 #include "i810_regs.h" 16 16 #include "i810.h" 17 + #include "i810_main.h" 17 18 18 19 struct mode_registers std_modes[] = { 19 20 /* 640x480 @ 60Hz */ ··· 277 276 var->upper_margin = total - (yres + var->lower_margin + var->vsync_len); 278 277 } 279 278 280 - u32 i810_get_watermark(struct fb_var_screeninfo *var, 279 + u32 i810_get_watermark(const struct fb_var_screeninfo *var, 281 280 struct i810fb_par *par) 282 281 { 283 282 struct mode_registers *params = &par->regs;