sh_eth.h 255 B

123456789101112131415
  1. #ifndef __ASM_SH_ETH_H__
  2. #define __ASM_SH_ETH_H__
  3. enum {EDMAC_LITTLE_ENDIAN, EDMAC_BIG_ENDIAN};
  4. struct sh_eth_plat_data {
  5. int phy;
  6. int edmac_endian;
  7. unsigned char mac_addr[6];
  8. unsigned no_ether_link:1;
  9. unsigned ether_link_active_low:1;
  10. };
  11. #endif