summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorSheng Nan <b38800@freescale.com>2013-01-16 11:06:30 +0800
committerSheng Nan <b38800@freescale.com>2013-01-18 18:23:37 +0800
commit052f9c301cc8311915a11bea22b54a8edeb81113 (patch)
tree9605dc7cfaf85bcbf514772348378e13315d1a89 /arch
parent28cae967e1c12702f2d877b7613b1b0ca594ab64 (diff)
ENGR00240228: IPUv3: CSI: Correct enum definition of IPU_CSI_DATA_WIDTH
The current definition for with 10 and 16 is not correct. IPU_CSI_DATA_WIDTH_10 = 2; IPU_CSI_DATA_WIDTH_16 = 3; According to the latest i.MX6DQ RM, the correct value should be: IPU_CSI_DATA_WIDTH_10 = 3; IPU_CSI_DATA_WIDTH_16 = 9; Signed-off-by: Sheng Nan <b38800@freescale.com>
Diffstat (limited to 'arch')
-rwxr-xr-xarch/arm/plat-mxc/include/mach/ipu-v3.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/arch/arm/plat-mxc/include/mach/ipu-v3.h b/arch/arm/plat-mxc/include/mach/ipu-v3.h
index 519e628d73ee..fb9dc383e023 100755
--- a/arch/arm/plat-mxc/include/mach/ipu-v3.h
+++ b/arch/arm/plat-mxc/include/mach/ipu-v3.h
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2010 Sascha Hauer <s.hauer@pengutronix.de>
- * Copyright (C) 2011-2012 Freescale Semiconductor, Inc.
+ * Copyright (C) 2011-2013 Freescale Semiconductor, Inc.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
@@ -419,10 +419,10 @@ typedef struct {
* Enumeration of CSI data bus widths.
*/
enum {
- IPU_CSI_DATA_WIDTH_4,
- IPU_CSI_DATA_WIDTH_8,
- IPU_CSI_DATA_WIDTH_10,
- IPU_CSI_DATA_WIDTH_16,
+ IPU_CSI_DATA_WIDTH_4 = 0,
+ IPU_CSI_DATA_WIDTH_8 = 1,
+ IPU_CSI_DATA_WIDTH_10 = 3,
+ IPU_CSI_DATA_WIDTH_16 = 9,
};
/*!