Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v2.6.34-rc5 15 lines 255 B view raw
1#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; 9 10 unsigned char mac_addr[6]; 11 unsigned no_ether_link:1; 12 unsigned ether_link_active_low:1; 13}; 14 15#endif