/* QLogic qed NIC Driver * Copyright (c) 2015 QLogic Corporation * * This software is available under the terms of the GNU General Public License * (GPL) Version 2, available from the file COPYING in the main directory of * this source tree. */#ifndef _QED_ETH_IF_H#define _QED_ETH_IF_H#include <linux/list.h>#include <linux/if_link.h>#include <linux/qed/eth_common.h>#include <linux/qed/qed_if.h>structqed_dev_eth_info{structqed_dev_infocommon;u8num_queues;u8num_tc;u8port_mac[ETH_ALEN];u8num_vlan_filters;};structqed_eth_ops{conststructqed_common_ops*common;int(*fill_dev_info)(structqed_dev*cdev,structqed_dev_eth_info*info);};conststructqed_eth_ops*qed_get_eth_ops(u32version);voidqed_put_eth_ops(void);#endif