diff options
author | Uwe Kleine-König <[email protected]> | 2022-12-02 19:35:18 +0100 |
---|---|---|
committer | Thierry Reding <[email protected]> | 2022-12-06 12:46:11 +0100 |
commit | 632ae5d7eb348b3ef88552ec0999260b6f9d6ab1 (patch) | |
tree | 4679038605b666fab0d1a656828df11457f082ab /drivers/usb/cdns3/cdns3-debug.h | |
parent | 85cad49f5ed269ffa0c80081d6506e39fa78456b (diff) |
pwm: stm32: 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)
Tested-by: Fabrice Gasnier <[email protected]>
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