diff options
author | Anton Vorontsov <avorontsov@mvista.com> | 2010-08-10 21:01:49 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-08-11 11:59:03 -0400 |
commit | 20b1597bcf4a76ccab232fa032f5f9ad30069167 (patch) | |
tree | 37ff80d3df4d7d10a35276080f319bb340e4ea2b /drivers/mmc/host/sdhci-pltfm.c | |
parent | 845e3f4f06f9b1d34f39601cb6b7abfb8f40653c (diff) |
sdhci-pltfm: add support for CNS3xxx SoC devices
There's nothing special, just SoC-specific ops and quirks.
Signed-off-by: Anton Vorontsov <avorontsov@mvista.com>
Cc: Ben Dooks <ben@simtec.co.uk>
Cc: Richard R?jfors <richard.rojfors@pelagicore.com>
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-pltfm.c')
-rw-r--r-- | drivers/mmc/host/sdhci-pltfm.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/mmc/host/sdhci-pltfm.c b/drivers/mmc/host/sdhci-pltfm.c index 4c043bb9ff12..e045e3c61dde 100644 --- a/drivers/mmc/host/sdhci-pltfm.c +++ b/drivers/mmc/host/sdhci-pltfm.c | |||
@@ -158,6 +158,9 @@ static int __devexit sdhci_pltfm_remove(struct platform_device *pdev) | |||
158 | 158 | ||
159 | static const struct platform_device_id sdhci_pltfm_ids[] = { | 159 | static const struct platform_device_id sdhci_pltfm_ids[] = { |
160 | { "sdhci", }, | 160 | { "sdhci", }, |
161 | #ifdef CONFIG_MMC_SDHCI_CNS3XXX | ||
162 | { "sdhci-cns3xxx", (kernel_ulong_t)&sdhci_cns3xxx_pdata }, | ||
163 | #endif | ||
161 | { }, | 164 | { }, |
162 | }; | 165 | }; |
163 | MODULE_DEVICE_TABLE(platform, sdhci_pltfm_ids); | 166 | MODULE_DEVICE_TABLE(platform, sdhci_pltfm_ids); |