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

Configure Feed

Select the types of activity you want to include in your feed.

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: Thomas Zimmermann <tzimmermann@suse.de>
Signed-off-by: Helge Deller <deller@gmx.de>

authored by

Thomas Zimmermann and committed by
Helge Deller
a86039b7 30baedee

+2 -1
+2 -1
include/linux/fb.h
··· 18 18 struct device; 19 19 struct device_node; 20 20 struct fb_info; 21 + struct fbcon_par; 21 22 struct file; 22 23 struct i2c_adapter; 23 24 struct inode; ··· 506 505 #define FBINFO_STATE_RUNNING 0 507 506 #define FBINFO_STATE_SUSPENDED 1 508 507 u32 state; /* Hardware state i.e suspend */ 509 - void *fbcon_par; /* fbcon use-only private area */ 508 + struct fbcon_par *fbcon_par; /* fbcon use-only private area */ 510 509 /* From here on everything is device dependent */ 511 510 void *par; 512 511