Re: [U-Boot] [PATCH 3/3] linux/io.h: add generic ioremap()/iounmap() defines

2016-06-27 Thread Masahiro Yamada
Hi Daniel, 2016-06-27 18:57 GMT+09:00 Daniel Schwierzeck : > > > Am 27.06.2016 um 10:32 schrieb Masahiro Yamada: >> For most of architectures in U-Boot, virtual address is straight >> mapped to physical address. So, it makes sense to have generic >> defines of ioremap and friends in . >> >> All o

Re: [U-Boot] [PATCH 3/3] linux/io.h: add generic ioremap()/iounmap() defines

2016-06-27 Thread Daniel Schwierzeck
Am 27.06.2016 um 10:32 schrieb Masahiro Yamada: > For most of architectures in U-Boot, virtual address is straight > mapped to physical address. So, it makes sense to have generic > defines of ioremap and friends in . > > All of them are just empty and will disappear at compile time, but > they

[U-Boot] [PATCH 3/3] linux/io.h: add generic ioremap()/iounmap() defines

2016-06-27 Thread Masahiro Yamada
For most of architectures in U-Boot, virtual address is straight mapped to physical address. So, it makes sense to have generic defines of ioremap and friends in . All of them are just empty and will disappear at compile time, but they will be helpful to implement drivers which are counterparts o