Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 /*
0003  * ks8861_mll platform data struct definition
0004  * Copyright (c) 2012 BTicino S.p.A.
0005  */
0006 
0007 #ifndef _LINUX_KS8851_MLL_H
0008 #define _LINUX_KS8851_MLL_H
0009 
0010 #include <linux/if_ether.h>
0011 
0012 /**
0013  * struct ks8851_mll_platform_data - Platform data of the KS8851_MLL network driver
0014  * @macaddr:    The MAC address of the device, set to all 0:s to use the on in
0015  *      the chip.
0016  */
0017 struct ks8851_mll_platform_data {
0018     u8 mac_addr[ETH_ALEN];
0019 };
0020 
0021 #endif