summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobby Cai <R63905@freescale.com>2013-07-10 20:46:47 +0800
committerRobby Cai <R63905@freescale.com>2013-07-11 11:01:29 +0800
commit9b3031dcd2c020d7abfdea510fbea55a59fe5d3e (patch)
tree5ce7d734783f10325db1f9c7b1e9f5d0958273fc
parentd41b0ebac6125c65d2cdcd165ceb38df6da1bf40 (diff)
ENGR00263553 fb: Change type uint to unsigned int in struct mxcfb_update_data
This file could be included in user-space application while uint is not quite standard type. This patch changed to unsigned int to avoid to include specific header file. This is requested from mm team. Signed-off-by: Robby Cai <R63905@freescale.com> (cherry picked from commit 318a325b8c19d1ba7c1451797da5a161e787c64d)
-rw-r--r--include/linux/mxcfb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/mxcfb.h b/include/linux/mxcfb.h
index e987efb7d6d0..d96d1b773a3c 100644
--- a/include/linux/mxcfb.h
+++ b/include/linux/mxcfb.h
@@ -110,7 +110,7 @@ struct mxcfb_update_data {
__u32 update_mode;
__u32 update_marker;
int temp;
- uint flags;
+ unsigned int flags;
struct mxcfb_alt_buffer_data alt_buffer_data;
};