diff options
author | Uwe Kleine-König <[email protected]> | 2022-12-02 19:35:15 +0100 |
---|---|---|
committer | Thierry Reding <[email protected]> | 2022-12-06 12:46:09 +0100 |
commit | 50f2151034b65125b6cce6b385ce8b74556e45f6 (patch) | |
tree | ee70b39cb73e5d5d5ed21db0cdb8d1fcb5108ff3 /drivers/usb/cdns3/cdns3-debug.h | |
parent | c637d87a7d96bd04674515b879b500f66361b74c (diff) |
pwm: img: 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