aboutsummaryrefslogtreecommitdiffstats
path: root/arch/blackfin/mach-bf537
diff options
context:
space:
mode:
authorYi Li <yi.li@analog.com>2008-11-18 04:48:22 -0500
committerBryan Wu <cooloney@kernel.org>2008-11-18 04:48:22 -0500
commit4989dbc17f085031885c3d898d95ce951fbd20aa (patch)
tree8daf229a3874e8404e1b1fdda480f8332912dd2d /arch/blackfin/mach-bf537
parentc6db04a78ac21e13aa1be17da73732355d07b2ba (diff)
Blackfin arch: workaround bug: spi_mmc driver working in dma mode may hang the system
Disable spi_mmc DMA by default. Signed-off-by: Yi Li <yi.li@analog.com> Signed-off-by: Bryan Wu <cooloney@kernel.org>
Diffstat (limited to 'arch/blackfin/mach-bf537')
-rw-r--r--arch/blackfin/mach-bf537/boards/stamp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/blackfin/mach-bf537/boards/stamp.c b/arch/blackfin/mach-bf537/boards/stamp.c
index b93310796ae1..cef0fd38aa5b 100644
--- a/arch/blackfin/mach-bf537/boards/stamp.c
+++ b/arch/blackfin/mach-bf537/boards/stamp.c
@@ -528,7 +528,7 @@ static struct bfin5xx_spi_chip ad9960_spi_chip_info = {
528 528
529#if defined(CONFIG_SPI_MMC) || defined(CONFIG_SPI_MMC_MODULE) 529#if defined(CONFIG_SPI_MMC) || defined(CONFIG_SPI_MMC_MODULE)
530static struct bfin5xx_spi_chip spi_mmc_chip_info = { 530static struct bfin5xx_spi_chip spi_mmc_chip_info = {
531 .enable_dma = 1, 531 .enable_dma = 0,
532 .bits_per_word = 8, 532 .bits_per_word = 8,
533}; 533};
534#endif 534#endif