blob: f739061e2ee491bcabb42f04b2fc763e54e6f06a [file] [log] [blame]
Yoshinori Sato71557a32008-08-06 19:49:00 -04001#ifndef __ASM_SH_ETH_H__
2#define __ASM_SH_ETH_H__
3
4enum {EDMAC_LITTLE_ENDIAN, EDMAC_BIG_ENDIAN};
5
6struct sh_eth_plat_data {
7 int phy;
8 int edmac_endian;
Yoshihiro Shimoda49235762009-08-27 23:25:03 +00009
Magnus Damm748031f2009-10-09 00:17:14 +000010 unsigned char mac_addr[6];
Yoshihiro Shimoda49235762009-08-27 23:25:03 +000011 unsigned no_ether_link:1;
12 unsigned ether_link_active_low:1;
Yoshinori Sato71557a32008-08-06 19:49:00 -040013};
14
15#endif