projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
06abe82
)
pinctrl: amd: use higher precision for 512 RtcClk
author
Coiby Xu
<coiby.xu@gmail.com>
Thu, 5 Nov 2020 23:19:10 +0000
(07:19 +0800)
committer
Linus Walleij
<linus.walleij@linaro.org>
Tue, 10 Nov 2020 13:19:10 +0000
(14:19 +0100)
RTC is 32.768kHz thus 512 RtcClk equals 15625 usec. The documentation
likely has dropped precision and that's why the driver mistakenly took
the slightly deviated value.
Cc: stable@vger.kernel.org
Reported-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Suggested-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Suggested-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Coiby Xu <coiby.xu@gmail.com>
Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Link:
https://lore.kernel.org/linux-gpio/2f4706a1-502f-75f0-9596-cc25b4933b6c@redhat.com/
Link:
https://lore.kernel.org/r/20201105231912.69527-3-coiby.xu@gmail.com
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/pinctrl/pinctrl-amd.c
patch
|
blob
|
history
diff --git
a/drivers/pinctrl/pinctrl-amd.c
b/drivers/pinctrl/pinctrl-amd.c
index d6b2b4bd337c3574877e73e352a7ee43249b1d5f..4aea3e05e8c65745e5275df4a3f0348865da6405 100644
(file)
--- a/
drivers/pinctrl/pinctrl-amd.c
+++ b/
drivers/pinctrl/pinctrl-amd.c
@@
-156,7
+156,7
@@
static int amd_gpio_set_debounce(struct gpio_chip *gc, unsigned offset,
pin_reg |= BIT(DB_TMR_OUT_UNIT_OFF);
pin_reg &= ~BIT(DB_TMR_LARGE_OFF);
} else if (debounce < 250000) {
- time = debounce / 156
00
;
+ time = debounce / 156
25
;
pin_reg |= time & DB_TMR_OUT_MASK;
pin_reg &= ~BIT(DB_TMR_OUT_UNIT_OFF);
pin_reg |= BIT(DB_TMR_LARGE_OFF);