diff options
author | Joe Perches <joe@perches.com> | 2015-02-10 15:55:03 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-02-11 17:38:28 -0500 |
commit | f7219b527b5710ae0c4add8faa4d0ea529722cb5 (patch) | |
tree | 9ce4fb75c6b219f4df803a4ff3110e5e718e00f6 /drivers/spi | |
parent | 80ad0d4a7a75158f2824d541e4802c88aba4f063 (diff) |
treewide: Remove unnecessary BCMA_CORETABLE_END macro
Use the normal {} instead of a macro to terminate an array.
Remove the macro too.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/spi')
-rw-r--r-- | drivers/spi/spi-bcm53xx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/spi-bcm53xx.c b/drivers/spi/spi-bcm53xx.c index 17b34cbadc03..3fb91c81015a 100644 --- a/drivers/spi/spi-bcm53xx.c +++ b/drivers/spi/spi-bcm53xx.c | |||
@@ -216,7 +216,7 @@ static struct spi_board_info bcm53xx_info = { | |||
216 | 216 | ||
217 | static const struct bcma_device_id bcm53xxspi_bcma_tbl[] = { | 217 | static const struct bcma_device_id bcm53xxspi_bcma_tbl[] = { |
218 | BCMA_CORE(BCMA_MANUF_BCM, BCMA_CORE_NS_QSPI, BCMA_ANY_REV, BCMA_ANY_CLASS), | 218 | BCMA_CORE(BCMA_MANUF_BCM, BCMA_CORE_NS_QSPI, BCMA_ANY_REV, BCMA_ANY_CLASS), |
219 | BCMA_CORETABLE_END | 219 | {}, |
220 | }; | 220 | }; |
221 | MODULE_DEVICE_TABLE(bcma, bcm53xxspi_bcma_tbl); | 221 | MODULE_DEVICE_TABLE(bcma, bcm53xxspi_bcma_tbl); |
222 | 222 | ||