mirror of https://gitee.com/openkylin/linux.git
ice: Minor cleanup in ice_switch.h
Remove duplicate define for ICE_INVAL_Q_HANDLE. Move defines to the top of the file. Signed-off-by: Anirudh Venkataramanan <anirudh.venkataramanan@intel.com> Tested-by: Andrew Bowers <andrewx.bowers@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
This commit is contained in:
parent
91aed40da3
commit
1eb11036a3
|
@ -8,9 +8,11 @@
|
|||
|
||||
#define ICE_SW_CFG_MAX_BUF_LEN 2048
|
||||
#define ICE_DFLT_VSI_INVAL 0xff
|
||||
#define ICE_FLTR_RX BIT(0)
|
||||
#define ICE_FLTR_TX BIT(1)
|
||||
#define ICE_FLTR_TX_RX (ICE_FLTR_RX | ICE_FLTR_TX)
|
||||
#define ICE_VSI_INVAL_ID 0xffff
|
||||
#define ICE_INVAL_Q_HANDLE 0xFFFF
|
||||
#define ICE_INVAL_Q_HANDLE 0xFFFF
|
||||
|
||||
/* VSI queue context structure */
|
||||
struct ice_q_ctx {
|
||||
|
@ -69,9 +71,6 @@ struct ice_fltr_info {
|
|||
/* rule ID returned by firmware once filter rule is created */
|
||||
u16 fltr_rule_id;
|
||||
u16 flag;
|
||||
#define ICE_FLTR_RX BIT(0)
|
||||
#define ICE_FLTR_TX BIT(1)
|
||||
#define ICE_FLTR_TX_RX (ICE_FLTR_RX | ICE_FLTR_TX)
|
||||
|
||||
/* Source VSI for LOOKUP_TX or source port for LOOKUP_RX */
|
||||
u16 src;
|
||||
|
|
Loading…
Reference in New Issue