diff options
author | Linus Walleij <linus.walleij@linaro.org> | 2016-01-04 02:21:55 +0100 |
---|---|---|
committer | Jiri Slaby <jslaby@suse.cz> | 2016-03-03 12:46:03 +0100 |
commit | 9ab73ebfeafc5451c343263118aaf84ad8f256cf (patch) | |
tree | 53d902483e394a2ff942759fdc8a207e9d278e8d | |
parent | f26c5a2c6c3f003c95edcaf090ceeab35ab1e246 (diff) | |
download | lwn-9ab73ebfeafc5451c343263118aaf84ad8f256cf.tar.gz lwn-9ab73ebfeafc5451c343263118aaf84ad8f256cf.zip |
mmc: mmci: fix an ages old detection error
commit 0bcb7efdff63564e80fe84dd36a9fbdfbf6697a4 upstream.
commit 4956e10903fd ("ARM: 6244/1: mmci: add variant data and default
MCICLOCK support") added variant data for ARM, U300 and Ux500 variants.
The Nomadik NHK8815/8820 variant was erroneously labeled as a U300
variant, and when the proper Nomadik variant was later introduced in
commit 34fd421349ff ("ARM: 7378/1: mmci: add support for the Nomadik MMCI
variant") this was not fixes. Let's say this fixes the latter commit as
there was no proper Nomadik support until then.
Fixes: 34fd421349ff ("ARM: 7378/1: mmci: add support for the Nomadik...")
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
-rw-r--r-- | drivers/mmc/host/mmci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/host/mmci.c b/drivers/mmc/host/mmci.c index c3785edc0e92..3755f4a43622 100644 --- a/drivers/mmc/host/mmci.c +++ b/drivers/mmc/host/mmci.c @@ -1827,7 +1827,7 @@ static struct amba_id mmci_ids[] = { { .id = 0x00280180, .mask = 0x00ffffff, - .data = &variant_u300, + .data = &variant_nomadik, }, { .id = 0x00480180, |