diff options
author | Uwe Kleine-König <[email protected]> | 2022-12-02 19:35:14 +0100 |
---|---|---|
committer | Thierry Reding <[email protected]> | 2022-12-06 12:46:08 +0100 |
commit | c637d87a7d96bd04674515b879b500f66361b74c (patch) | |
tree | 41847c83e53082f47fc67c5e2c3cc8ee0e13f93a /drivers/usb/cdns3/cdns3-debug.h | |
parent | 55f363e19cb8ca65400eeb11d716519609fbeae6 (diff) |
pwm: fsl-ftm: Use regmap_clear_bits and regmap_set_bits where applicable
Found using coccinelle and the following semantic patch:
@@
expression map, reg, bits;
@@
- regmap_update_bits(map, reg, bits, bits)
+ regmap_set_bits(map, reg, bits)
@@
expression map, reg, bits;
@@
- regmap_update_bits(map, reg, bits, 0)
+ regmap_clear_bits(map, reg, bits)
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Uwe Kleine-König <[email protected]>
Signed-off-by: Thierry Reding <[email protected]>
Diffstat (limited to 'drivers/usb/cdns3/cdns3-debug.h')
0 files changed, 0 insertions, 0 deletions