diff options
-rw-r--r-- | drivers/spi/spi_bfin5xx.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/spi/spi_bfin5xx.c b/drivers/spi/spi_bfin5xx.c index 61c2ebf9fe18..b8352546c589 100644 --- a/drivers/spi/spi_bfin5xx.c +++ b/drivers/spi/spi_bfin5xx.c | |||
@@ -1354,6 +1354,12 @@ static int __init bfin_spi_probe(struct platform_device *pdev) | |||
1354 | goto out_error_queue_alloc; | 1354 | goto out_error_queue_alloc; |
1355 | } | 1355 | } |
1356 | 1356 | ||
1357 | /* Reset SPI registers. If these registers were used by the boot loader, | ||
1358 | * the sky may fall on your head if you enable the dma controller. | ||
1359 | */ | ||
1360 | write_CTRL(drv_data, BIT_CTL_CPHA | BIT_CTL_MASTER); | ||
1361 | write_FLAG(drv_data, 0xFF00); | ||
1362 | |||
1357 | /* Register with the SPI framework */ | 1363 | /* Register with the SPI framework */ |
1358 | platform_set_drvdata(pdev, drv_data); | 1364 | platform_set_drvdata(pdev, drv_data); |
1359 | status = spi_register_master(master); | 1365 | status = spi_register_master(master); |