[PATCH] ep93xx eth driver: Remove unnecessary parentheses in constant definitions

Matthias Kaehlcke matthias at kaehlcke.net
Tue Feb 2 13:16:29 EST 2010


ep93xx eth driver: Remove unnecessary parentheses in definition of the constants
MII_ADDRESS_MAX and MII_REGISTER_MAX

Signed-off-by: Matthias Kaehlcke <matthias at kaehlcke.net>
---
 drivers/net/ep93xx.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/ep93xx.c b/drivers/net/ep93xx.c
index a63eac1..e91a92e 100644
--- a/drivers/net/ep93xx.c
+++ b/drivers/net/ep93xx.c
@@ -563,12 +563,12 @@ eth_probe_done:
 /**
  * Maximum MII address we support
  */
-#define MII_ADDRESS_MAX			(31)
+#define MII_ADDRESS_MAX			31
 
 /**
  * Maximum MII register address we support
  */
-#define MII_REGISTER_MAX		(31)
+#define MII_REGISTER_MAX		31
 
 /**
  * Read a 16-bit value from an MII register.
-- 
1.6.5




More information about the barebox mailing list