From: Boris Brezillon Date: Fri, 27 Jan 2017 09:10:36 +0000 (+0100) Subject: memory: atmel-ebi: Fix the test to enable generic SMC logic X-Git-Tag: v4.13~1243^2~6^2~2 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=427456e4772caf155c20604a60265dbc5a126267;p=mirror_ubuntu-bionic-kernel.git memory: atmel-ebi: Fix the test to enable generic SMC logic We should test the apply value and not the ret one here. Signed-off-by: Boris Brezillon Fixes: 6a4ec4cd0888 ("memory: add Atmel EBI (External Bus Interface) driver") Signed-off-by: Alexandre Belloni --- diff --git a/drivers/memory/atmel-ebi.c b/drivers/memory/atmel-ebi.c index 1eaaa2be8ff2..2c4c9a1978bc 100644 --- a/drivers/memory/atmel-ebi.c +++ b/drivers/memory/atmel-ebi.c @@ -503,7 +503,7 @@ static int at91_ebi_dev_setup(struct at91_ebi *ebi, struct device_node *np, * Attach the EBI device to the generic SMC logic if at least * one "atmel,smc-" property is present. */ - if (ebi->ebi_csa && ret) + if (ebi->ebi_csa && apply) regmap_field_update_bits(ebi->ebi_csa, BIT(cs), 0); }