diff options
author | Eric Miao <eric.miao@marvell.com> | 2008-06-19 05:19:57 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2008-07-12 16:52:40 -0400 |
commit | fa6d3be08538bb80274d20c7e59f9beca48fa44a (patch) | |
tree | 9f5df8e61bac1138d971d323472f2d4fbf3ca87b /drivers/net/smc91x.h | |
parent | d280eadc4fba0bf99fb1c3b60e8c5e007f7da02c (diff) |
[NET] smc91x: favor the use of SMC91X_USE_* instead of SMC_CAN_USE_*
Let's simplify the logic and avoid confusion, the use of SMC91X_USE_*
is favored than SMC_CAN_USE_*, if platform data isn't given, convert
the hardcoded SMC_CAN_USE_* to SMC91X_USE_*.
Signed-off-by: Eric Miao <eric.miao@marvell.com>
Acked-by: Nicolas Pitre <nico@cam.org>
Acked-by: Jeff Garzik <jgarzik@pobox.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'drivers/net/smc91x.h')
-rw-r--r-- | drivers/net/smc91x.h | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/drivers/net/smc91x.h b/drivers/net/smc91x.h index 8606818653f8..8310f1a073d8 100644 --- a/drivers/net/smc91x.h +++ b/drivers/net/smc91x.h | |||
@@ -454,7 +454,6 @@ static inline void LPD7_SMC_outsw (unsigned char* a, int r, | |||
454 | #define RPC_LSA_DEFAULT RPC_LED_100_10 | 454 | #define RPC_LSA_DEFAULT RPC_LED_100_10 |
455 | #define RPC_LSB_DEFAULT RPC_LED_TX_RX | 455 | #define RPC_LSB_DEFAULT RPC_LED_TX_RX |
456 | 456 | ||
457 | #define SMC_DYNAMIC_BUS_CONFIG | ||
458 | #endif | 457 | #endif |
459 | 458 | ||
460 | 459 | ||
@@ -504,15 +503,9 @@ struct smc_local { | |||
504 | struct smc91x_platdata cfg; | 503 | struct smc91x_platdata cfg; |
505 | }; | 504 | }; |
506 | 505 | ||
507 | #ifdef SMC_DYNAMIC_BUS_CONFIG | 506 | #define SMC_8BIT(p) ((p)->cfg.flags & SMC91X_USE_8BIT) |
508 | #define SMC_8BIT(p) (((p)->cfg.flags & SMC91X_USE_8BIT) && SMC_CAN_USE_8BIT) | 507 | #define SMC_16BIT(p) ((p)->cfg.flags & SMC91X_USE_16BIT) |
509 | #define SMC_16BIT(p) (((p)->cfg.flags & SMC91X_USE_16BIT) && SMC_CAN_USE_16BIT) | 508 | #define SMC_32BIT(p) ((p)->cfg.flags & SMC91X_USE_32BIT) |
510 | #define SMC_32BIT(p) (((p)->cfg.flags & SMC91X_USE_32BIT) && SMC_CAN_USE_32BIT) | ||
511 | #else | ||
512 | #define SMC_8BIT(p) SMC_CAN_USE_8BIT | ||
513 | #define SMC_16BIT(p) SMC_CAN_USE_16BIT | ||
514 | #define SMC_32BIT(p) SMC_CAN_USE_32BIT | ||
515 | #endif | ||
516 | 509 | ||
517 | #ifdef SMC_USE_PXA_DMA | 510 | #ifdef SMC_USE_PXA_DMA |
518 | /* | 511 | /* |