ks8851_mll.h 472 B

123456789101112131415161718192021
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * ks8861_mll platform data struct definition
  4. * Copyright (c) 2012 BTicino S.p.A.
  5. */
  6. #ifndef _LINUX_KS8851_MLL_H
  7. #define _LINUX_KS8851_MLL_H
  8. #include <linux/if_ether.h>
  9. /**
  10. * struct ks8851_mll_platform_data - Platform data of the KS8851_MLL network driver
  11. * @macaddr: The MAC address of the device, set to all 0:s to use the on in
  12. * the chip.
  13. */
  14. struct ks8851_mll_platform_data {
  15. u8 mac_addr[ETH_ALEN];
  16. };
  17. #endif