aboutsummaryrefslogtreecommitdiff
path: root/board/bf537-stamp
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2009-01-13 11:00:29 -0500
committerMike Frysinger <vapier@gentoo.org>2009-02-05 21:25:36 -0500
commit4b7e3d045cc82f7f7b6f3a19b54a814da36ac52c (patch)
tree851309142e255f62f7f2d7e081b5607a2fddb136 /board/bf537-stamp
parentf790ef6ff12381cb0e43de54fb2b0f1204ad8ed6 (diff)
Blackfin: move default boot SPI CS to common code
Move the default SPI CS that we boot from into common code so that it can be used in other SPI drivers and environment settings. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'board/bf537-stamp')
-rw-r--r--board/bf537-stamp/spi_flash.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/board/bf537-stamp/spi_flash.c b/board/bf537-stamp/spi_flash.c
index b147ce77e..7b764b497 100644
--- a/board/bf537-stamp/spi_flash.c
+++ b/board/bf537-stamp/spi_flash.c
@@ -180,13 +180,7 @@ static struct manufacturer_info flash_manufacturers[] = {
* BF51x, BF533, BF561: SSEL2
*/
#ifndef CONFIG_SPI_FLASH_SSEL
-# if defined(__ADSPBF531__) || defined(__ADSPBF532__) || defined(__ADSPBF533__) || \
- defined(__ADSPBF538__) || defined(__ADSPBF539__) || defined(__ADSPBF561__) || \
- defined(__ADSPBF51x__)
-# define CONFIG_SPI_FLASH_SSEL 2
-# else
-# define CONFIG_SPI_FLASH_SSEL 1
-# endif
+# define CONFIG_SPI_FLASH_SSEL BFIN_BOOT_SPI_SSEL
#endif
#define SSEL_MASK (1 << CONFIG_SPI_FLASH_SSEL)