diff options
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 | /* |