From: Thomas Chou <thomas@wytron.com.tw>
Date: Thu, 29 Oct 2015 13:00:32 +0000 (+0800)
Subject: nios2: remove the useless parenthesis in asm/io.h
X-Git-Tag: v2025.01-rc5-pxa1908~11295^2~26
X-Git-Url: http://git.dujemihanovic.xyz/img/html/static/login.html?a=commitdiff_plain;h=1cda48f333acd0f822720275730de0e6a6591a75;p=u-boot.git

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>
---

diff --git a/arch/nios2/include/asm/io.h b/arch/nios2/include/asm/io.h
index 007df8d9ba..e04050ff43 100644
--- a/arch/nios2/include/asm/io.h
+++ b/arch/nios2/include/asm/io.h
@@ -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)