9
0
Fork 0

ep93xx eth driver: Remove unnecessary parentheses in constant definitions

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

Signed-off-by: Matthias Kaehlcke <matthias@kaehlcke.net>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Matthias Kaehlcke 2010-02-02 19:16:29 +01:00 committed by Sascha Hauer
parent e1cd82c07e
commit 7f9bde68aa
1 changed files with 2 additions and 2 deletions

View File

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