Re: [U-Boot] [PATCH] zynq: add empty xil_io.h to avoid compile error

2014-05-09 Thread Tom Rini
On Thu, May 08, 2014 at 10:29:25AM +0200, Michal Simek wrote: > On 05/08/2014 10:13 AM, Masahiro Yamada wrote: > > ps7_init.c exported by hw project has #include "xil_io.h" line > > but U-Boot does not have "xil_io.h". > > > > So we get an error on SPL build: > > ps7_init.c:12581:20: fatal error

Re: [U-Boot] [PATCH] zynq: add empty xil_io.h to avoid compile error

2014-05-08 Thread Michal Simek
On 05/08/2014 10:13 AM, Masahiro Yamada wrote: > ps7_init.c exported by hw project has #include "xil_io.h" line > but U-Boot does not have "xil_io.h". > > So we get an error on SPL build: > ps7_init.c:12581:20: fatal error: xil_io.h: No such file or directory > > We can delete the include direc

[U-Boot] [PATCH] zynq: add empty xil_io.h to avoid compile error

2014-05-08 Thread Masahiro Yamada
ps7_init.c exported by hw project has #include "xil_io.h" line but U-Boot does not have "xil_io.h". So we get an error on SPL build: ps7_init.c:12581:20: fatal error: xil_io.h: No such file or directory We can delete the include directive in ps7_init.c to avoid this error. But it is painful to