Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3009de60 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman
Browse files

Staging: sm750fb: fix build warning with proc_panDisplay



Change the options to the proc_panDisplay function pointer to match the
function pointer that we want to assign to it, in order to remove the
build warning.

Cc: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
Cc: Teddy Wang <teddy.wang@siliconmotion.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f8b0dced
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -120,8 +120,9 @@ struct lynxfb_crtc{
	int(*proc_setColReg)(struct lynxfb_crtc*,ushort,ushort,ushort,ushort);
	void (*clear)(struct lynxfb_crtc*);
        /* pan display */
        int(*proc_panDisplay)(struct lynxfb_crtc*, struct fb_var_screeninfo*,
                struct fb_info*);
	int (*proc_panDisplay)(struct lynxfb_crtc *,
			       const struct fb_var_screeninfo *,
			       const struct fb_info *);
	/* cursor information */
	struct lynx_cursor cursor;
};