aboutsummaryrefslogtreecommitdiffstats
path: root/arch/blackfin/mach-bf537/boards/minotaur.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/blackfin/mach-bf537/boards/minotaur.c')
-rw-r--r--arch/blackfin/mach-bf537/boards/minotaur.c16
1 files changed, 12 insertions, 4 deletions
diff --git a/arch/blackfin/mach-bf537/boards/minotaur.c b/arch/blackfin/mach-bf537/boards/minotaur.c
index bfb3671a78da..3901dd093b90 100644
--- a/arch/blackfin/mach-bf537/boards/minotaur.c
+++ b/arch/blackfin/mach-bf537/boards/minotaur.c
@@ -159,14 +159,12 @@ static struct flash_platform_data bfin_spi_flash_data = {
159/* SPI flash chip (m25p64) */ 159/* SPI flash chip (m25p64) */
160static struct bfin5xx_spi_chip spi_flash_chip_info = { 160static struct bfin5xx_spi_chip spi_flash_chip_info = {
161 .enable_dma = 0, /* use dma transfer with this chip*/ 161 .enable_dma = 0, /* use dma transfer with this chip*/
162 .bits_per_word = 8,
163}; 162};
164#endif 163#endif
165 164
166#if defined(CONFIG_MMC_SPI) || defined(CONFIG_MMC_SPI_MODULE) 165#if defined(CONFIG_MMC_SPI) || defined(CONFIG_MMC_SPI_MODULE)
167static struct bfin5xx_spi_chip mmc_spi_chip_info = { 166static struct bfin5xx_spi_chip mmc_spi_chip_info = {
168 .enable_dma = 0, 167 .enable_dma = 0,
169 .bits_per_word = 8,
170}; 168};
171#endif 169#endif
172 170
@@ -242,8 +240,13 @@ static struct resource bfin_uart0_resources[] = {
242 .flags = IORESOURCE_MEM, 240 .flags = IORESOURCE_MEM,
243 }, 241 },
244 { 242 {
243 .start = IRQ_UART0_TX,
244 .end = IRQ_UART0_TX,
245 .flags = IORESOURCE_IRQ,
246 },
247 {
245 .start = IRQ_UART0_RX, 248 .start = IRQ_UART0_RX,
246 .end = IRQ_UART0_RX+1, 249 .end = IRQ_UART0_RX,
247 .flags = IORESOURCE_IRQ, 250 .flags = IORESOURCE_IRQ,
248 }, 251 },
249 { 252 {
@@ -285,8 +288,13 @@ static struct resource bfin_uart1_resources[] = {
285 .flags = IORESOURCE_MEM, 288 .flags = IORESOURCE_MEM,
286 }, 289 },
287 { 290 {
291 .start = IRQ_UART1_TX,
292 .end = IRQ_UART1_TX,
293 .flags = IORESOURCE_IRQ,
294 },
295 {
288 .start = IRQ_UART1_RX, 296 .start = IRQ_UART1_RX,
289 .end = IRQ_UART1_RX+1, 297 .end = IRQ_UART1_RX,
290 .flags = IORESOURCE_IRQ, 298 .flags = IORESOURCE_IRQ,
291 }, 299 },
292 { 300 {