diff options
author | Padmavathi Venna <padma.v@samsung.com> | 2011-07-05 04:13:56 -0400 |
---|---|---|
committer | Kukjin Kim <kgene.kim@samsung.com> | 2011-07-06 02:03:08 -0400 |
commit | 8918034dfb7b0f625ba9eb0329d5750a9573f62e (patch) | |
tree | e4a9aeafc2befb3ec378f87eabd549feb1891503 /arch/arm/mach-s5pc100/dev-spi.c | |
parent | fe0d42203cb5616eeff68b14576a0f7e2dd56625 (diff) |
ARM: SAMSUNG: Add tx_st_done variable
tx_st_done is required for checking the transmission status of SPI
channels with different fifo levels
Signed-off-by: Padmavathi Venna <padma.v@samsung.com>
Acked-by: Jassi Brar <jassisinghbrar@gmail.com
Acked-by: Grant Likely <grant.likely@secretlab.ca>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm/mach-s5pc100/dev-spi.c')
-rw-r--r-- | arch/arm/mach-s5pc100/dev-spi.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/mach-s5pc100/dev-spi.c b/arch/arm/mach-s5pc100/dev-spi.c index 57b19794d9bb..2b58c9a2cf70 100644 --- a/arch/arm/mach-s5pc100/dev-spi.c +++ b/arch/arm/mach-s5pc100/dev-spi.c | |||
@@ -90,6 +90,7 @@ static struct s3c64xx_spi_info s5pc100_spi0_pdata = { | |||
90 | .fifo_lvl_mask = 0x7f, | 90 | .fifo_lvl_mask = 0x7f, |
91 | .rx_lvl_offset = 13, | 91 | .rx_lvl_offset = 13, |
92 | .high_speed = 1, | 92 | .high_speed = 1, |
93 | .tx_st_done = 21, | ||
93 | }; | 94 | }; |
94 | 95 | ||
95 | static u64 spi_dmamask = DMA_BIT_MASK(32); | 96 | static u64 spi_dmamask = DMA_BIT_MASK(32); |
@@ -134,6 +135,7 @@ static struct s3c64xx_spi_info s5pc100_spi1_pdata = { | |||
134 | .fifo_lvl_mask = 0x7f, | 135 | .fifo_lvl_mask = 0x7f, |
135 | .rx_lvl_offset = 13, | 136 | .rx_lvl_offset = 13, |
136 | .high_speed = 1, | 137 | .high_speed = 1, |
138 | .tx_st_done = 21, | ||
137 | }; | 139 | }; |
138 | 140 | ||
139 | struct platform_device s5pc100_device_spi1 = { | 141 | struct platform_device s5pc100_device_spi1 = { |
@@ -176,6 +178,7 @@ static struct s3c64xx_spi_info s5pc100_spi2_pdata = { | |||
176 | .fifo_lvl_mask = 0x7f, | 178 | .fifo_lvl_mask = 0x7f, |
177 | .rx_lvl_offset = 13, | 179 | .rx_lvl_offset = 13, |
178 | .high_speed = 1, | 180 | .high_speed = 1, |
181 | .tx_st_done = 21, | ||
179 | }; | 182 | }; |
180 | 183 | ||
181 | struct platform_device s5pc100_device_spi2 = { | 184 | struct platform_device s5pc100_device_spi2 = { |