Eugene Crosser | b4d72c0 | 2014-01-14 15:54:11 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright IBM Corp. 2013 |
| 3 | * Author(s): Eugene Crosser <eugene.crosser@ru.ibm.com> |
| 4 | */ |
| 5 | |
| 6 | #ifndef __QETH_L2_H__ |
| 7 | #define __QETH_L2_H__ |
| 8 | |
| 9 | #include "qeth_core.h" |
| 10 | |
| 11 | int qeth_l2_create_device_attributes(struct device *); |
| 12 | void qeth_l2_remove_device_attributes(struct device *); |
| 13 | void qeth_l2_setup_bridgeport_attrs(struct qeth_card *card); |
| 14 | |
Lakhvich Dmitriy | 5f78e29 | 2016-06-16 16:18:58 +0200 | [diff] [blame] | 15 | struct qeth_mac { |
| 16 | u8 mac_addr[OSA_ADDR_LEN]; |
| 17 | u8 is_uc:1; |
| 18 | u8 disp_flag:2; |
| 19 | struct hlist_node hnode; |
| 20 | }; |
| 21 | |
Eugene Crosser | b4d72c0 | 2014-01-14 15:54:11 +0100 | [diff] [blame] | 22 | #endif /* __QETH_L2_H__ */ |