net/ice/base: replace u16 with enum
authorQi Zhang <qi.z.zhang@intel.com>
Mon, 23 Mar 2020 07:17:29 +0000 (15:17 +0800)
committerFerruh Yigit <ferruh.yigit@intel.com>
Tue, 21 Apr 2020 11:57:04 +0000 (13:57 +0200)
Use enum ice_flow_field directly so no need to be converted
from u16 for ice_flow_xtract_fld

Signed-off-by: Paul M Stillwell Jr <paul.m.stillwell.jr@intel.com>
Signed-off-by: Qi Zhang <qi.z.zhang@intel.com>
Acked-by: Qiming Yang <qiming.yang@intel.com>
drivers/net/ice/base/ice_flow.c

index 02f1698..6c413e3 100644 (file)
@@ -937,15 +937,14 @@ ice_flow_create_xtrct_seq(struct ice_hw *hw,
 
        for (i = 0; i < params->prof->segs_cnt; i++) {
                u64 match = params->prof->segs[i].match;
-               u16 j;
+               enum ice_flow_field j;
 
                for (j = 0; j < ICE_FLOW_FIELD_IDX_MAX && match; j++) {
                        const u64 bit = BIT_ULL(j);
 
                        if (match & bit) {
-                               status = ice_flow_xtract_fld
-                                       (hw, params, i, (enum ice_flow_field)j,
-                                        match);
+                               status = ice_flow_xtract_fld(hw, params, i, j,
+                                                            match);
                                if (status)
                                        return status;
                                match &= ~bit;