Merge tag 'fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/arm...
[linux-2.6.git] / include / linux / sh_eth.h
blob90b5e30c2f222ba8e06deb9d347940bf7d5aa94b
1 #ifndef __ASM_SH_ETH_H__
2 #define __ASM_SH_ETH_H__
4 #include <linux/phy.h>
5 #include <linux/if_ether.h>
7 enum {EDMAC_LITTLE_ENDIAN, EDMAC_BIG_ENDIAN};
9 struct sh_eth_plat_data {
10 int phy;
11 int edmac_endian;
12 phy_interface_t phy_interface;
13 void (*set_mdio_gate)(void *addr);
15 unsigned char mac_addr[ETH_ALEN];
16 unsigned no_ether_link:1;
17 unsigned ether_link_active_low:1;
18 unsigned needs_init:1;
21 #endif