Commit a86039b7 authored by Thomas Zimmermann's avatar Thomas Zimmermann Committed by Helge Deller
Browse files

fbcon: Declare struct fb_info.fbcon_par as of type struct fbcon_par



The only correct type for the field fbcon_par in struct fb_info
is struct fbcon_par. Declare is as such. The field is a pointer
to fbcon-private data.

Signed-off-by: default avatarThomas Zimmermann <tzimmermann@suse.de>
Signed-off-by: default avatarHelge Deller <deller@gmx.de>
parent 30baedee
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -18,6 +18,7 @@ struct backlight_device;
struct device;
struct device_node;
struct fb_info;
struct fbcon_par;
struct file;
struct i2c_adapter;
struct inode;
@@ -505,7 +506,7 @@ struct fb_info {
#define FBINFO_STATE_RUNNING	0
#define FBINFO_STATE_SUSPENDED	1
	u32 state;			/* Hardware state i.e suspend */
	void *fbcon_par;                /* fbcon use-only private area */
	struct fbcon_par *fbcon_par;    /* fbcon use-only private area */
	/* From here on everything is device dependent */
	void *par;