diff options
author | Mike Frysinger <vapier.adi@gmail.com> | 2009-04-06 22:00:40 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-07 11:31:05 -0400 |
commit | 4160bde2d83d1c66e9c774c48015a13733fe9aba (patch) | |
tree | f7e0e52b3a0669117acf91e1d1fe6d08b84ff31e | |
parent | b31e27a6dc2c6534399c595ba78390125a56e90f (diff) |
Blackfin SPI Driver: SPI slave select code cleanup
- remove duplicated definition MAX_SPI_SSEL
- remove unnecessary array size
Signed-off-by: Mike Frysinger <vapier.adi@gmail.com>
Signed-off-by: Bryan Wu <cooloney@kernel.org>
Cc: David Brownell <david-b@pacbell.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | drivers/spi/spi_bfin5xx.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/spi/spi_bfin5xx.c b/drivers/spi/spi_bfin5xx.c index 1c10efb120db..b797ece0b10c 100644 --- a/drivers/spi/spi_bfin5xx.c +++ b/drivers/spi/spi_bfin5xx.c | |||
@@ -198,8 +198,6 @@ static void cs_deactive(struct driver_data *drv_data, struct chip_data *chip) | |||
198 | udelay(chip->cs_chg_udelay); | 198 | udelay(chip->cs_chg_udelay); |
199 | } | 199 | } |
200 | 200 | ||
201 | #define MAX_SPI_SSEL 7 | ||
202 | |||
203 | /* stop controller and re-config current chip*/ | 201 | /* stop controller and re-config current chip*/ |
204 | static void restore_state(struct driver_data *drv_data) | 202 | static void restore_state(struct driver_data *drv_data) |
205 | { | 203 | { |
@@ -1001,7 +999,7 @@ static int transfer(struct spi_device *spi, struct spi_message *msg) | |||
1001 | 999 | ||
1002 | #define MAX_SPI_SSEL 7 | 1000 | #define MAX_SPI_SSEL 7 |
1003 | 1001 | ||
1004 | static u16 ssel[3][MAX_SPI_SSEL] = { | 1002 | static u16 ssel[][MAX_SPI_SSEL] = { |
1005 | {P_SPI0_SSEL1, P_SPI0_SSEL2, P_SPI0_SSEL3, | 1003 | {P_SPI0_SSEL1, P_SPI0_SSEL2, P_SPI0_SSEL3, |
1006 | P_SPI0_SSEL4, P_SPI0_SSEL5, | 1004 | P_SPI0_SSEL4, P_SPI0_SSEL5, |
1007 | P_SPI0_SSEL6, P_SPI0_SSEL7}, | 1005 | P_SPI0_SSEL6, P_SPI0_SSEL7}, |