Fix the following build error due to a missing semicolon: CC [M] drivers/spi/spi_oc_tiny.o drivers/spi/spi_oc_tiny.c:394: error: expected ‘,’ or ‘;’ before ‘extern’ make[2]: *** [drivers/spi/spi_oc_tiny.o] Error 1
Signed-off-by: Andres Salomon <[email protected]> --- drivers/spi/spi_oc_tiny.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/spi/spi_oc_tiny.c b/drivers/spi/spi_oc_tiny.c index e99e545..f1bde66 100644 --- a/drivers/spi/spi_oc_tiny.c +++ b/drivers/spi/spi_oc_tiny.c @@ -390,7 +390,7 @@ static int __devexit tiny_spi_remove(struct platform_device *pdev) static const struct of_device_id tiny_spi_match[] = { { .compatible = "opencores,tiny-spi-rtlsvn2", }, {}, -} +}; MODULE_DEVICE_TABLE(of, tiny_spi_match); #else /* CONFIG_OF */ #define tiny_spi_match NULL -- 1.7.2.3 ------------------------------------------------------------------------------ Free Software Download: Index, Search & Analyze Logs and other IT data in Real-Time with Splunk. Collect, index and harness all the fast moving IT data generated by your applications, servers and devices whether physical, virtual or in the cloud. Deliver compliance at lower cost and gain new business insights. http://p.sf.net/sfu/splunk-dev2dev _______________________________________________ spi-devel-general mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/spi-devel-general
