pinctrl: renesas: Fix DRV register offset
Use fixed 4bit size for generating the DRV register element mask, not the size of the value, which can be smaller. Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com> Cc: Masahiro Yamada <yamada.masahiro@socionext.com> Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
This commit is contained in:
parent
fdaccfeb5e
commit
0ff9e4800f
@ -591,7 +591,7 @@ static int sh_pfc_pinconf_set_drive_strength(struct sh_pfc *pfc,
|
||||
strength = strength / step - 1;
|
||||
|
||||
val = sh_pfc_read_raw_reg(reg, 32);
|
||||
val &= ~GENMASK(offset + size - 1, offset);
|
||||
val &= ~GENMASK(offset + 4 - 1, offset);
|
||||
val |= strength << offset;
|
||||
|
||||
if (unlock_reg)
|
||||
|
Loading…
Reference in New Issue
Block a user