diff options
author | Jesse Brandeburg <[email protected]> | 2023-12-05 17:01:08 -0800 |
---|---|---|
committer | Tony Nguyen <[email protected]> | 2023-12-18 11:20:43 -0800 |
commit | b9a4525450758dd75edbdaee97425ba7546c2b5c (patch) | |
tree | e84d413b31ed993e4965361a10fecc17ada8c275 /drivers/net/ethernet/intel/igc/igc_main.c | |
parent | c82e64868afd2656452b430c3976a8b39f1cafe5 (diff) |
intel: legacy: field get conversion
Refactor several older Intel drivers to use FIELD_GET(), which reduces
lines of code and adds clarity of intent.
This code was generated by the following coccinelle/spatch script and
then manually repaired.
@get@
constant shift,mask;
type T;
expression a;
@@
(
-((T)((a) & mask) >> shift)
+FIELD_GET(mask, a)
and applied via:
spatch --sp-file field_prep.cocci --in-place --dir \
drivers/net/ethernet/intel/
Cc: Julia Lawall <[email protected]>
CC: Alexander Lobakin <[email protected]>
Reviewed-by: Marcin Szycik <[email protected]>
Reviewed-by: Simon Horman <[email protected]>
Signed-off-by: Jesse Brandeburg <[email protected]>
Tested-by: Pucha Himasekhar Reddy <[email protected]> (A Contingent worker at Intel)
Signed-off-by: Tony Nguyen <[email protected]>
Diffstat (limited to 'drivers/net/ethernet/intel/igc/igc_main.c')
0 files changed, 0 insertions, 0 deletions