diff options
Diffstat (limited to 'drivers/net/ethernet/renesas')
-rw-r--r-- | drivers/net/ethernet/renesas/sh_eth.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/ethernet/renesas/sh_eth.h b/drivers/net/ethernet/renesas/sh_eth.h index 87c7ae9e10cc..7540dc35fdb8 100644 --- a/drivers/net/ethernet/renesas/sh_eth.h +++ b/drivers/net/ethernet/renesas/sh_eth.h | |||
@@ -302,11 +302,11 @@ enum FCFTR_BIT { | |||
302 | #define DEFAULT_FIFO_F_D_RFF (FCFTR_RFF2 | FCFTR_RFF1 | FCFTR_RFF0) | 302 | #define DEFAULT_FIFO_F_D_RFF (FCFTR_RFF2 | FCFTR_RFF1 | FCFTR_RFF0) |
303 | #define DEFAULT_FIFO_F_D_RFD (FCFTR_RFD2 | FCFTR_RFD1 | FCFTR_RFD0) | 303 | #define DEFAULT_FIFO_F_D_RFD (FCFTR_RFD2 | FCFTR_RFD1 | FCFTR_RFD0) |
304 | 304 | ||
305 | /* Transfer descriptor bit */ | 305 | /* Transmit descriptor bit */ |
306 | enum TD_STS_BIT { | 306 | enum TD_STS_BIT { |
307 | TD_TACT = 0x80000000, | 307 | TD_TACT = 0x80000000, TD_TDLE = 0x40000000, |
308 | TD_TDLE = 0x40000000, TD_TFP1 = 0x20000000, | 308 | TD_TFP1 = 0x20000000, TD_TFP0 = 0x10000000, |
309 | TD_TFP0 = 0x10000000, | 309 | TD_TFE = 0x08000000, TD_TWBI = 0x04000000, |
310 | }; | 310 | }; |
311 | #define TDF1ST TD_TFP1 | 311 | #define TDF1ST TD_TFP1 |
312 | #define TDFEND TD_TFP0 | 312 | #define TDFEND TD_TFP0 |