Thomas Gleixner | 82c2981 | 2019-05-28 09:57:05 -0700 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-only */ |
Raffaele Recalcati | 29a6b6c | 2012-06-03 10:43:43 +0000 | [diff] [blame] | 2 | /* |
| 3 | * ks8861_mll platform data struct definition |
| 4 | * Copyright (c) 2012 BTicino S.p.A. |
Raffaele Recalcati | 29a6b6c | 2012-06-03 10:43:43 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #ifndef _LINUX_KS8851_MLL_H |
| 8 | #define _LINUX_KS8851_MLL_H |
| 9 | |
| 10 | #include <linux/if_ether.h> |
| 11 | |
| 12 | /** |
| 13 | * struct ks8851_mll_platform_data - Platform data of the KS8851_MLL network driver |
| 14 | * @macaddr: The MAC address of the device, set to all 0:s to use the on in |
| 15 | * the chip. |
| 16 | */ |
| 17 | struct ks8851_mll_platform_data { |
| 18 | u8 mac_addr[ETH_ALEN]; |
| 19 | }; |
| 20 | |
| 21 | #endif |