[U-Boot] [PATCH 07/10][v3] board: freescale: common: Conditionally compile IFC QXIS func
Prabhakar Kushwaha
prabhakar.kushwaha at nxp.com
Sat May 14 10:31:17 CEST 2016
From: Abhimanyu Saini <abhimanyu.saini at nxp.com>
Check if qixis supports memory-mapped read/write
before compiling IFC based qixis read/write functions.
Signed-off-by: Calvin Johnson <calvin.johnson at nxp.com>
Signed-off-by: Abhimanyu Saini <abhimanyu.saini at nxp.com>
Signed-off-by: Prabhakar Kushwaha <prabhakar.kushwaha at nxp.com>
---
Chages for v2: New patch in this patch-set
Chages for v3: Sending as it is
board/freescale/common/qixis.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/board/freescale/common/qixis.c b/board/freescale/common/qixis.c
index 113295f..2e35d41 100644
--- a/board/freescale/common/qixis.c
+++ b/board/freescale/common/qixis.c
@@ -27,6 +27,7 @@ void qixis_write_i2c(unsigned int reg, u8 value)
}
#endif
+#ifdef QIXIS_BASE
u8 qixis_read(unsigned int reg)
{
void *p = (void *)QIXIS_BASE;
@@ -40,6 +41,7 @@ void qixis_write(unsigned int reg, u8 value)
out_8(p + reg, value);
}
+#endif
u16 qixis_read_minor(void)
{
--
1.9.1
More information about the U-Boot
mailing list