Messages in this thread Patch in this message |  | | From | Axel Lin <> | Subject | [PATCH 1/2] regulator: fan53555: Fix slew_shift setting for tcs4525 | Date | Mon, 17 May 2021 09:03:17 +0800 |
| |
Fix trivial copy-paste mistake.
Signed-off-by: Axel Lin <axel.lin@ingics.com> --- drivers/regulator/fan53555.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/regulator/fan53555.c b/drivers/regulator/fan53555.c index 2695be617373..d582ef3a3aeb 100644 --- a/drivers/regulator/fan53555.c +++ b/drivers/regulator/fan53555.c @@ -376,7 +376,7 @@ static int fan53526_voltages_setup_tcs(struct fan53555_device_info *di) case TCS4525_CHIP_ID_12: di->slew_reg = TCS4525_TIME; di->slew_mask = TCS_SLEW_MASK; - di->slew_shift = TCS_SLEW_MASK; + di->slew_shift = TCS_SLEW_SHIFT; /* Init voltage range and step */ di->vsel_min = 600000; -- 2.25.1
|  |