diff options
author | Stephen Boyd <sboyd@codeaurora.org> | 2016-11-10 16:02:20 -0800 |
---|---|---|
committer | Guenter Roeck <linux@roeck-us.net> | 2016-12-16 06:53:54 -0800 |
commit | 35ffa961df7ed13b3701bdb546f08849921e50dc (patch) | |
tree | 0c52ba2b9b2eeaea0e4021fb6dc47a5fec159e58 /drivers/watchdog | |
parent | f06f35c66fdbd5ac38901a3305ce763a0cd59375 (diff) | |
download | op-kernel-dev-35ffa961df7ed13b3701bdb546f08849921e50dc.zip op-kernel-dev-35ffa961df7ed13b3701bdb546f08849921e50dc.tar.gz |
watchdog: jz4740: Fix modular build
Compiling this driver as a module causes a build error because a
semicolon is missing after MODULE_DEVICE_TABLE. Add it.
CC [M] drivers/watchdog/jz4740_wdt.o
drivers/watchdog/jz4740_wdt.c:154:1: error: expected ‘,’ or ‘;’ before ‘static’
drivers/watchdog/jz4740_wdt.c:218:11: error: ‘jz4740_wdt_probe’ undeclared here (not in a function)
Cc: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
Cc: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers/watchdog')
-rw-r--r-- | drivers/watchdog/jz4740_wdt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/watchdog/jz4740_wdt.c b/drivers/watchdog/jz4740_wdt.c index c8d51dd..20627f2 100644 --- a/drivers/watchdog/jz4740_wdt.c +++ b/drivers/watchdog/jz4740_wdt.c @@ -148,7 +148,7 @@ static const struct of_device_id jz4740_wdt_of_matches[] = { { .compatible = "ingenic,jz4740-watchdog", }, { /* sentinel */ } }; -MODULE_DEVICE_TABLE(of, jz4740_wdt_of_matches) +MODULE_DEVICE_TABLE(of, jz4740_wdt_of_matches); #endif static int jz4740_wdt_probe(struct platform_device *pdev) |