msm: mdp: Fix reserved field usage

An earlier commit(ec5b2f)increased the number of reserved fields
in the kernel standard fb.h header changing the struct size.
This caused issues with userland applications using the corresponding
bionic header. This patch revert the earlier increas in size
and makes corresponding adjustments to the reserved field usage.
A follow up patch will remove usage of reserved fields entirely.
This commit is contained in:
Naseer Ahmed
2012-08-15 17:29:11 -07:00
committed by Iliyan Malchev
parent 220d113e4c
commit 8b1bd63cfb
5 changed files with 20 additions and 13 deletions

View File

@@ -279,7 +279,7 @@ struct fb_var_screeninfo {
__u32 vmode; /* see FB_VMODE_* */
__u32 rotate; /* angle we rotate counter clockwise */
__u32 colorspace; /* colorspace for FOURCC-based modes */
__u32 reserved[5]; /* Reserved for future compatibility */
__u32 reserved[4]; /* Reserved for future compatibility */
};
struct fb_cmap {