diff options
| author | Jesse Brandeburg <[email protected]> | 2023-12-06 01:01:02 +0000 |
|---|---|---|
| committer | Tony Nguyen <[email protected]> | 2023-12-18 19:15:53 +0000 |
| commit | 4d893c104cda8961b8885737b2de73b83f7b6d0d (patch) | |
| tree | 6c934fb20b888e3f540b2572e38107927b2d3bb5 /drivers/net/ethernet/intel/ice/ice_common.c | |
| parent | intel: add bit macro includes where needed (diff) | |
| download | kernel-4d893c104cda8961b8885737b2de73b83f7b6d0d.tar.gz kernel-4d893c104cda8961b8885737b2de73b83f7b6d0d.zip | |
intel: legacy: field prep conversion
Refactor several older Intel drivers to use FIELD_PREP(), which reduces
lines of code and adds clarity of intent.
This code was generated by the following coccinelle/spatch script and
then manually repaired.
@prep2@
constant shift,mask;
type T;
expression a;
@@
-(((T)(a) << shift) & mask)
+FIELD_PREP(mask, a)
@prep@
constant shift,mask;
type T;
expression a;
@@
-((T)((a) << shift) & mask)
+FIELD_PREP(mask, a)
Cc: Julia Lawall <[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/ice/ice_common.c')
0 files changed, 0 insertions, 0 deletions
