mirror of
https://github.com/torvalds/linux.git
synced 2026-09-24 06:24:02 +02:00
mpfs_cfg_clk_set_rate() passes the mask and value arguments to
regmap_update_bits() in the wrong order. The resulting write becomes
reg = orig_reg | val, causing bits to not be cleared if the clock
divider changes.
Pass the arguments in the correct order so the divider field is updated
as intended.
Fixes:
|
||
|---|---|---|
| .. | ||
| clk-mpfs-ccc.c | ||
| clk-mpfs.c | ||
| clk-pic32.c | ||
| clk-pic32.h | ||
| clk-pic32mzda.c | ||
| Kconfig | ||
| Makefile | ||