[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1284135579-13578-5-git-send-email-wellsk40@gmail.com>
Date: Fri, 10 Sep 2010 09:19:38 -0700
From: wellsk40@...il.com
To: linus.walleij@...ricsson.com,
spi-devel-general@...ts.sourceforge.net
Cc: sameo@...ux.intel.com, rabin.vincent@...ricsson.com,
srinidhi.kasagar@...ricsson.com, linux-kernel@...r.kernel.org,
linux@....linux.org.uk, u.kleine-koenig@...gutronix.de,
linux-arm-kernel@...ts.infradead.org, tj@...nel.org,
grant.likely@...retlab.ca, Lukasz.Baj@...to.com,
quentinyang05@...il.com, Kevin Wells <wellsk40@...il.com>
Subject: [PATCH 4/5] ARM: Ux500: Change SPI mode and remove unused fields
From: Kevin Wells <wellsk40@...il.com>
Some of the fields in the pl022_chip_info structure used with
the amba pl022 driver are no longer used. This patch removes
those unused fields and changes the .mode flags in the
spi_board_info structure to setup the correct SPI mode.
Signed-off-by: Kevin Wells <wellsk40@...il.com>
---
arch/arm/mach-ux500/board-mop500.c | 8 +-------
1 files changed, 1 insertions(+), 7 deletions(-)
diff --git a/arch/arm/mach-ux500/board-mop500.c b/arch/arm/mach-ux500/board-mop500.c
index 0e8fd13..219ae0c 100644
--- a/arch/arm/mach-ux500/board-mop500.c
+++ b/arch/arm/mach-ux500/board-mop500.c
@@ -55,19 +55,13 @@ static void ab4500_spi_cs_control(u32 command)
}
struct pl022_config_chip ab4500_chip_info = {
- .lbm = LOOPBACK_DISABLED,
.com_mode = INTERRUPT_TRANSFER,
.iface = SSP_INTERFACE_MOTOROLA_SPI,
/* we can act as master only */
.hierarchy = SSP_MASTER,
.slave_tx_disable = 0,
- .endian_rx = SSP_RX_MSB,
- .endian_tx = SSP_TX_MSB,
- .data_size = SSP_DATA_BITS_24,
.rx_lev_trig = SSP_RX_1_OR_MORE_ELEM,
.tx_lev_trig = SSP_TX_1_OR_MORE_EMPTY_LOC,
- .clk_phase = SSP_CLK_SECOND_EDGE,
- .clk_pol = SSP_CLK_POL_IDLE_HIGH,
.cs_control = ab4500_spi_cs_control,
};
@@ -83,7 +77,7 @@ static struct spi_board_info u8500_spi_devices[] = {
.max_speed_hz = 12000000,
.bus_num = 0,
.chip_select = 0,
- .mode = SPI_MODE_0,
+ .mode = SPI_MODE_3,
.irq = IRQ_DB8500_AB8500,
},
};
--
1.7.2.2
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists