mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-19 05:31:32 +00: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:
parent
b7f2bbfff6
commit
3faaa24b11
1 changed files with 2 additions and 0 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue