]> git.ipfire.org Git - thirdparty/kernel/linux.git/blob - drivers/s390/net/qeth_l2.h
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[thirdparty/kernel/linux.git] / drivers / s390 / net / qeth_l2.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3 * Copyright IBM Corp. 2013
4 * Author(s): Eugene Crosser <eugene.crosser@ru.ibm.com>
5 */
6
7 #ifndef __QETH_L2_H__
8 #define __QETH_L2_H__
9
10 #include "qeth_core.h"
11
12 extern const struct attribute_group *qeth_l2_attr_groups[];
13
14 int qeth_l2_create_device_attributes(struct device *);
15 void qeth_l2_remove_device_attributes(struct device *);
16 void qeth_l2_setup_bridgeport_attrs(struct qeth_card *card);
17
18 struct qeth_mac {
19 u8 mac_addr[OSA_ADDR_LEN];
20 u8 is_uc:1;
21 u8 disp_flag:2;
22 struct hlist_node hnode;
23 };
24
25 #endif /* __QETH_L2_H__ */