Yoshinori Sato | 71557a3 | 2008-08-06 19:49:00 -0400 | [diff] [blame] | 1 | #ifndef __ASM_SH_ETH_H__ |
| 2 | #define __ASM_SH_ETH_H__ |
| 3 | |
| 4 | enum {EDMAC_LITTLE_ENDIAN, EDMAC_BIG_ENDIAN}; |
| 5 | |
| 6 | struct sh_eth_plat_data { |
| 7 | int phy; |
| 8 | int edmac_endian; |
Yoshihiro Shimoda | 4923576 | 2009-08-27 23:25:03 +0000 | [diff] [blame] | 9 | |
Magnus Damm | 748031f | 2009-10-09 00:17:14 +0000 | [diff] [blame] | 10 | unsigned char mac_addr[6]; |
Yoshihiro Shimoda | 4923576 | 2009-08-27 23:25:03 +0000 | [diff] [blame] | 11 | unsigned no_ether_link:1; |
| 12 | unsigned ether_link_active_low:1; |
Yoshinori Sato | 71557a3 | 2008-08-06 19:49:00 -0400 | [diff] [blame] | 13 | }; |
| 14 | |
| 15 | #endif |