diff options
author | Rob Herring <rob.herring@calxeda.com> | 2010-11-16 14:33:50 -0600 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2011-01-03 14:08:18 -0700 |
commit | da81c3b9825c826bfb06a4dcc0524c671985eb68 (patch) | |
tree | 32729b9cb74cdaa0a39d2847675af02ff024fa89 /drivers/mmc | |
parent | 236cdc7bc718566a7e7cb9f763b51a8dcad88cbe (diff) | |
download | op-kernel-dev-da81c3b9825c826bfb06a4dcc0524c671985eb68.zip op-kernel-dev-da81c3b9825c826bfb06a4dcc0524c671985eb68.tar.gz |
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 'drivers/mmc')
-rw-r--r-- | drivers/mmc/host/sdhci-of-core.c | 4 |
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 c51b711..fa19d84 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) |