> From: Bixuan Cui <[email protected]> > Sent: Friday, July 31, 2020 3:08 AM > To: [email protected]; [email protected] > Cc: Kirsher, Jeffrey T <[email protected]>; intel-wired- > [email protected]; [email protected]; [email protected] > Subject: [PATCH -next v2] net: ice: Fix pointer cast warnings > > pointers should be casted to unsigned long to avoid > -Wpointer-to-int-cast warnings: > > drivers/net/ethernet/intel/ice/ice_flow.h:197:33: warning: > cast from pointer to integer of different size > drivers/net/ethernet/intel/ice/ice_flow.h:198:32: warning: > cast to pointer from integer of different size > > Signed-off-by: Bixuan Cui <[email protected]> > --- > v2->v1: add fix: > ice_flow.h:198:32: warning: cast to pointer from integer of different size [- > Wint-to-pointer-cast] > #define ICE_FLOW_ENTRY_PTR(h) ((struct ice_flow_entry *)(h)) > > drivers/net/ethernet/intel/ice/ice_flow.h | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-)
Tested-by: Aaron Brown <[email protected]>
