diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-06-17 04:16:57 -0400 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2011-06-17 10:35:57 -0400 |
commit | ddc0bf13d63715c2bce0fe8818fba12b82823283 (patch) | |
tree | e08f1aab72efee0f4f6e128dc5486c2ced36099f /drivers/spi/spi-bfin5xx.c | |
parent | 47885ce81c7498c015e6763303821ab6e8a6e2cc (diff) |
spi/bfin_spi: constify pin array
This array isn't written anywhere, so constify it.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'drivers/spi/spi-bfin5xx.c')
-rw-r--r-- | drivers/spi/spi-bfin5xx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/spi-bfin5xx.c b/drivers/spi/spi-bfin5xx.c index 733183186012..ca421c40e202 100644 --- a/drivers/spi/spi-bfin5xx.c +++ b/drivers/spi/spi-bfin5xx.c | |||
@@ -965,7 +965,7 @@ static int bfin_spi_transfer(struct spi_device *spi, struct spi_message *msg) | |||
965 | 965 | ||
966 | #define MAX_SPI_SSEL 7 | 966 | #define MAX_SPI_SSEL 7 |
967 | 967 | ||
968 | static u16 ssel[][MAX_SPI_SSEL] = { | 968 | static const u16 ssel[][MAX_SPI_SSEL] = { |
969 | {P_SPI0_SSEL1, P_SPI0_SSEL2, P_SPI0_SSEL3, | 969 | {P_SPI0_SSEL1, P_SPI0_SSEL2, P_SPI0_SSEL3, |
970 | P_SPI0_SSEL4, P_SPI0_SSEL5, | 970 | P_SPI0_SSEL4, P_SPI0_SSEL5, |
971 | P_SPI0_SSEL6, P_SPI0_SSEL7}, | 971 | P_SPI0_SSEL6, P_SPI0_SSEL7}, |