mirror of
https://xff.cz/git/u-boot/
synced 2025-09-04 10:12:14 +02:00
board: freescale: common: Conditionally compile IFC QXIS func
Check if qixis supports memory-mapped read/write before compiling IFC based qixis read/write functions. Signed-off-by: Calvin Johnson <calvin.johnson@nxp.com> Signed-off-by: Abhimanyu Saini <abhimanyu.saini@nxp.com> Signed-off-by: Prabhakar Kushwaha <prabhakar.kushwaha@nxp.com> Reviewed-by: York Sun <york.sun@nxp.com>
This commit is contained in:
committed by
York Sun
parent
b7f2bbfff6
commit
3faaa24b11
@@ -27,6 +27,7 @@ void qixis_write_i2c(unsigned int reg, u8 value)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef QIXIS_BASE
|
||||||
u8 qixis_read(unsigned int reg)
|
u8 qixis_read(unsigned int reg)
|
||||||
{
|
{
|
||||||
void *p = (void *)QIXIS_BASE;
|
void *p = (void *)QIXIS_BASE;
|
||||||
@@ -40,6 +41,7 @@ void qixis_write(unsigned int reg, u8 value)
|
|||||||
|
|
||||||
out_8(p + reg, value);
|
out_8(p + reg, value);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
u16 qixis_read_minor(void)
|
u16 qixis_read_minor(void)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user