aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mmc/host/sdhci-of-core.c
diff options
context:
space:
mode:
authorRob Herring <rob.herring@calxeda.com>2010-11-16 14:33:50 -0600
committerGrant Likely <grant.likely@secretlab.ca>2011-01-03 14:08:18 -0700
commitda81c3b9825c826bfb06a4dcc0524c671985eb68 (patch)
tree32729b9cb74cdaa0a39d2847675af02ff024fa89 /drivers/mmc/host/sdhci-of-core.c
parentof: make drivers depend on CONFIG_OF instead of CONFIG_PPC_OF (diff)
downloadlinux-dev-da81c3b9825c826bfb06a4dcc0524c671985eb68.tar.xz
linux-dev-da81c3b9825c826bfb06a4dcc0524c671985eb68.zip
of: Fixes for OF probing on little endian systems
Fixes for sdhci-of and ipmi drivers. Auditing all drivers using of_get_property did not find other occurrences likely to be used on LE platforms. Signed-off-by: Rob Herring <rob.herring@calxeda.com> Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to '')
-rw-r--r--drivers/mmc/host/sdhci-of-core.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mmc/host/sdhci-of-core.c b/drivers/mmc/host/sdhci-of-core.c
index c51b71174c1d..fa19d849a920 100644
--- a/drivers/mmc/host/sdhci-of-core.c
+++ b/drivers/mmc/host/sdhci-of-core.c
@@ -122,7 +122,7 @@ static int __devinit sdhci_of_probe(struct platform_device *ofdev,
struct sdhci_of_data *sdhci_of_data = match->data;
struct sdhci_host *host;
struct sdhci_of_host *of_host;
- const u32 *clk;
+ const __be32 *clk;
int size;
int ret;
@@ -166,7 +166,7 @@ static int __devinit sdhci_of_probe(struct platform_device *ofdev,
clk = of_get_property(np, "clock-frequency", &size);
if (clk && size == sizeof(*clk) && *clk)
- of_host->clock = *clk;
+ of_host->clock = be32_to_cpup(clk);
ret = sdhci_add_host(host);
if (ret)