sh_eth.h 227 B

1234567891011121314
  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 no_ether_link:1;
  8. unsigned ether_link_active_low:1;
  9. };
  10. #endif