ethoc.h 439 B

1234567891011121314151617181920212223
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * linux/include/net/ethoc.h
  4. *
  5. * Copyright (C) 2008-2009 Avionic Design GmbH
  6. *
  7. * Written by Thierry Reding <[email protected]>
  8. */
  9. #ifndef LINUX_NET_ETHOC_H
  10. #define LINUX_NET_ETHOC_H 1
  11. #include <linux/if.h>
  12. #include <linux/types.h>
  13. struct ethoc_platform_data {
  14. u8 hwaddr[IFHWADDRLEN];
  15. s8 phy_id;
  16. u32 eth_clkfreq;
  17. bool big_endian;
  18. };
  19. #endif /* !LINUX_NET_ETHOC_H */