Skip to content

Commit 0bcb7ef

Browse files
Linus Walleijstorulf
authored andcommitted
mmc: mmci: fix an ages old detection error
commit 4956e10 ("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 34fd421 ("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. Cc: [email protected] Fixes: 34fd421 ("ARM: 7378/1: mmci: add support for the Nomadik...") Signed-off-by: Linus Walleij <[email protected]> Signed-off-by: Ulf Hansson <[email protected]>
1 parent d981278 commit 0bcb7ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/mmc/host/mmci.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1886,7 +1886,7 @@ static struct amba_id mmci_ids[] = {
18861886
{
18871887
.id = 0x00280180,
18881888
.mask = 0x00ffffff,
1889-
.data = &variant_u300,
1889+
.data = &variant_nomadik,
18901890
},
18911891
{
18921892
.id = 0x00480180,

0 commit comments

Comments
 (0)