1
0
Fork 0

[media] s5c73m3-spi: fix compilation breakage when compiled as Module

commit f934a94bb5 ('s5c73m3: Export OF
module alias information') broke compilation when compiled as module:

In file included from drivers/media/i2c/s5c73m3/s5c73m3-spi.c:22:0:
drivers/media/i2c/s5c73m3/s5c73m3-spi.c:40:40: error: expected ')' before ';' token
 MODULE_DEVICE_TABLE(of, s5c73m3_spi_ids;);
                                        ^

Fix it by removing the extra ';'

Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
hifive-unleashed-5.1
Mauro Carvalho Chehab 2015-11-18 16:46:33 -02:00
parent 769b640929
commit 203e942d20
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ enum spi_direction {
SPI_DIR_RX,
SPI_DIR_TX
};
MODULE_DEVICE_TABLE(of, s5c73m3_spi_ids;);
MODULE_DEVICE_TABLE(of, s5c73m3_spi_ids);
static int spi_xmit(struct spi_device *spi_dev, void *addr, const int len,
enum spi_direction dir)