diff options
author | Albert Herranz <albert_herranz@yahoo.es> | 2009-12-17 15:27:20 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-12-17 15:45:32 -0800 |
commit | 1144ab5d4b2da9f964d126105c6b3ced939eb073 (patch) | |
tree | baba32874021651f2387a0181a12a9b26c847444 /drivers/mmc/host/sdhci-of-core.c | |
parent | 7657c3a7d4bd42b832af5d6bb0e0e9bdba82d44d (diff) | |
download | linux-1144ab5d4b2da9f964d126105c6b3ced939eb073.tar.gz |
sdhci-of: add support for the wii sdhci controller
Add support for the Secure Digital Host Controller Interface found on the
"Hollywood" chipset of the Nintendo Wii video game console.
Signed-off-by: Albert Herranz <albert_herranz@yahoo.es>
Cc: <linux-mmc@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/mmc/host/sdhci-of-core.c')
-rw-r--r-- | drivers/mmc/host/sdhci-of-core.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/mmc/host/sdhci-of-core.c b/drivers/mmc/host/sdhci-of-core.c index add2008d890d..55e33135edb4 100644 --- a/drivers/mmc/host/sdhci-of-core.c +++ b/drivers/mmc/host/sdhci-of-core.c @@ -196,6 +196,9 @@ static const struct of_device_id sdhci_of_match[] = { { .compatible = "fsl,mpc8536-esdhc", .data = &sdhci_esdhc, }, { .compatible = "fsl,esdhc", .data = &sdhci_esdhc, }, #endif +#ifdef CONFIG_MMC_SDHCI_OF_HLWD + { .compatible = "nintendo,hollywood-sdhci", .data = &sdhci_hlwd, }, +#endif { .compatible = "generic-sdhci", }, {}, }; |