mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 23:51:33 +00:00
nios2: remove the useless parenthesis in asm/io.h
Remove the useless parenthesis in asm/io.h as suggested by Marek. Signed-off-by: Thomas Chou <thomas@wytron.com.tw> Acked-by: Marek Vasut <marex@denx.de>
This commit is contained in:
parent
1ce61cbbe7
commit
1cda48f333
1 changed files with 4 additions and 4 deletions
|
@ -18,10 +18,10 @@ static inline void sync(void)
|
|||
* that can be used to access the memory range with the caching
|
||||
* properties specified by "flags".
|
||||
*/
|
||||
#define MAP_NOCACHE (1)
|
||||
#define MAP_WRCOMBINE (0)
|
||||
#define MAP_WRBACK (0)
|
||||
#define MAP_WRTHROUGH (0)
|
||||
#define MAP_NOCACHE 1
|
||||
#define MAP_WRCOMBINE 0
|
||||
#define MAP_WRBACK 0
|
||||
#define MAP_WRTHROUGH 0
|
||||
|
||||
static inline void *
|
||||
map_physmem(phys_addr_t paddr, unsigned long len, unsigned long flags)
|
||||
|
|
Loading…
Reference in a new issue