mfd: sh_mobile_sdhi MMC_CAP_MMC_HIGHSPEED support
authorMagnus Damm <damm@opensource.se>
Mon, 22 Feb 2010 04:37:09 +0000 (13:37 +0900)
committerSamuel Ortiz <sameo@linux.intel.com>
Sun, 7 Mar 2010 21:17:31 +0000 (22:17 +0100)
Add MMC_CAP_MMC_HIGHSPEED support to the sh_mobile_sdhi
driver. Also, remove type cast and FIXME comment.

Signed-off-by: Magnus Damm <damm@opensource.se>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
drivers/mfd/sh_mobile_sdhi.c

index 03efae8..468fd36 100644 (file)
@@ -21,7 +21,7 @@
 #include <linux/kernel.h>
 #include <linux/clk.h>
 #include <linux/platform_device.h>
-
+#include <linux/mmc/host.h>
 #include <linux/mfd/core.h>
 #include <linux/mfd/tmio.h>
 #include <linux/mfd/sh_mobile_sdhi.h>
@@ -95,9 +95,9 @@ static int __init sh_mobile_sdhi_probe(struct platform_device *pdev)
 
        clk_enable(priv->clk);
 
-       /* FIXME: silly const unsigned int hclk */
-       *(unsigned int *)&priv->mmc_data.hclk = clk_get_rate(priv->clk);
+       priv->mmc_data.hclk = clk_get_rate(priv->clk);
        priv->mmc_data.set_pwr = sh_mobile_sdhi_set_pwr;
+       priv->mmc_data.capabilities = MMC_CAP_MMC_HIGHSPEED;
 
        memcpy(&priv->cell_mmc, &sh_mobile_sdhi_cell, sizeof(priv->cell_mmc));
        priv->cell_mmc.driver_data = &priv->mmc_data;