diff options
author | Alexander Dahl <ada@thorsis.com> | 2017-07-25 14:00:24 +0200 |
---|---|---|
committer | Alexandre Belloni <alexandre.belloni@free-electrons.com> | 2017-07-26 22:37:54 +0200 |
commit | 3fb3b3c4b68e33bb4acf42361b6a0db96115de35 (patch) | |
tree | b585bdcaede6b86749e3a44cba67f5f62ba7b40a /drivers/mfd/atmel-smc.c | |
parent | 1f6b53901f5bffbbb0464c732e83bb2a3a784ff7 (diff) | |
download | linux-stable-3fb3b3c4b68e33bb4acf42361b6a0db96115de35.tar.gz linux-stable-3fb3b3c4b68e33bb4acf42361b6a0db96115de35.tar.bz2 linux-stable-3fb3b3c4b68e33bb4acf42361b6a0db96115de35.zip |
memory: atmel-ebi: Fix smc cycle xlate converter
The converter function for translating ns timings in register values was
initialized with a wrong function pointer. This resulted in wrong
register values also for the setup and pulse registers when configuring
the EBI interface trough dts.
Includes a small fix in a comment of the smc driver, which was probably
just a copy'n'paste mistake.
Signed-off-by: Alexander Dahl <ada@thorsis.com>
Acked-by: Boris Brezillon <boris.brezillon@free-electrons.com>
Acked-by: Lee Jones <lee.jones@linaro.org>
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Diffstat (limited to 'drivers/mfd/atmel-smc.c')
-rw-r--r-- | drivers/mfd/atmel-smc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/atmel-smc.c b/drivers/mfd/atmel-smc.c index 954cf0f66a31..20cc0ea470fa 100644 --- a/drivers/mfd/atmel-smc.c +++ b/drivers/mfd/atmel-smc.c @@ -206,7 +206,7 @@ EXPORT_SYMBOL_GPL(atmel_smc_cs_conf_set_pulse); * parameter * * This function encodes the @ncycles value as described in the datasheet - * (section "SMC Pulse Register"), and then stores the result in the + * (section "SMC Cycle Register"), and then stores the result in the * @conf->setup field at @shift position. * * Returns -EINVAL if @shift is invalid, -ERANGE if @ncycles does not fit in |