From: Ian Stokes <ian.sto...@intel.com>

num_rules was defined u16 but it should be u8 as it is passed to
function ice_aq_sw_rules which expects u8.

Signed-off-by: Fabio Pricoco <fabio.pric...@intel.com>
Signed-off-by: Ian Stokes <ian.sto...@intel.com>
---
 drivers/net/ice/base/ice_switch.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ice/base/ice_switch.c 
b/drivers/net/ice/base/ice_switch.c
index e5930a5010..9ea302585c 100644
--- a/drivers/net/ice/base/ice_switch.c
+++ b/drivers/net/ice/base/ice_switch.c
@@ -9658,7 +9658,7 @@ ice_add_adv_rule(struct ice_hw *hw, struct 
ice_adv_lkup_elem *lkups,
        struct ice_switch_info *sw;
        u16 nb_lg_acts_mark = 1;
        const u8 *pkt = NULL;
-       u16 num_rules = 1;
+       u8 num_rules = 1;
        bool prof_rule;
        u16 word_cnt;
        u32 act = 0;
-- 
2.43.0

Reply via email to