lkml.org 
[lkml]   [2012]   [Feb]   [15]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH 1/1] mmc_spi - Fix endianess issue with voltage-ranges
Date
 * The voltage-ranges values from the device tree were used as-is,
without first (potentially) swapping the bytes to the target CPU's
endianess.

Signed-off-by: Alex Hornung <alex@alexhornung.com>
---
drivers/mmc/host/of_mmc_spi.c | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/drivers/mmc/host/of_mmc_spi.c b/drivers/mmc/host/of_mmc_spi.c
index ab66f24..4bfd3e8 100644
--- a/drivers/mmc/host/of_mmc_spi.c
+++ b/drivers/mmc/host/of_mmc_spi.c
@@ -112,9 +112,10 @@ struct mmc_spi_platform_data *mmc_spi_get_pdata(struct spi_device *spi)
for (i = 0; i < num_ranges; i++) {
const int j = i * 2;
u32 mask;
+ u32 vdd_min = be32_to_cpu(voltage_ranges[j]);
+ u32 vdd_max = be32_to_cpu(voltage_ranges[j + 1]);

- mask = mmc_vddrange_to_ocrmask(voltage_ranges[j],
- voltage_ranges[j + 1]);
+ mask = mmc_vddrange_to_ocrmask(vdd_min, vdd_max);
if (!mask) {
ret = -EINVAL;
dev_err(dev, "OF: voltage-range #%d is invalid\n", i);
--
1.7.3.4


\
 
 \ /
  Last update: 2012-02-16 01:05    [W:0.020 / U:0.092 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site