xref: /dpdk/drivers/net/ice/base/ice_vlan_mode.h (revision 5ade55ab)
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2001-2021 Intel Corporation
3  */
4 
5 #ifndef _ICE_VLAN_MODE_H_
6 #define _ICE_VLAN_MODE_H_
7 
8 #include "ice_osdep.h"
9 
10 struct ice_hw;
11 
12 bool ice_is_dvm_ena(struct ice_hw *hw);
13 enum ice_status ice_set_vlan_mode(struct ice_hw *hw);
14 void ice_post_pkg_dwnld_vlan_mode_cfg(struct ice_hw *hw);
15 
16 #endif /* _ICE_VLAN_MODE_H */
17