diff options
author | Lad Prabhakar <[email protected]> | 2024-09-11 14:20:31 +0100 |
---|---|---|
committer | Wim Van Sebroeck <[email protected]> | 2024-09-17 13:41:28 +0200 |
commit | 95c588f69ee5bf5ba5884ca156ac9d5c9309f6da (patch) | |
tree | 2ab131af70c75498b199874af1ea4dcc4f252e97 | |
parent | 74baa9c6c5bf801d8cfb4906f01e8c8d8215dd06 (diff) |
watchdog: rzv2h_wdt: Add missing MODULE_LICENSE tag to fix modpost error
Add the missing `MODULE_LICENSE()` tag to the `rzv2h_wdt` driver, which
resolves the following modpost error when built as a module:
ERROR: modpost: missing MODULE_LICENSE() in drivers/watchdog/rzv2h_wdt.o
Fixes: f6febd0a30b6 ("watchdog: Add Watchdog Timer driver for RZ/V2H(P)")
Reported-by: Stephen Rothwell <[email protected]>
Signed-off-by: Lad Prabhakar <[email protected]>
Reviewed-by: Guenter Roeck <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Guenter Roeck <[email protected]>
Signed-off-by: Wim Van Sebroeck <[email protected]>
-rw-r--r-- | drivers/watchdog/rzv2h_wdt.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/watchdog/rzv2h_wdt.c b/drivers/watchdog/rzv2h_wdt.c index 2da7a631fb2a..1d1b17312747 100644 --- a/drivers/watchdog/rzv2h_wdt.c +++ b/drivers/watchdog/rzv2h_wdt.c @@ -270,3 +270,4 @@ static struct platform_driver rzv2h_wdt_driver = { module_platform_driver(rzv2h_wdt_driver); MODULE_AUTHOR("Lad Prabhakar <[email protected]>"); MODULE_DESCRIPTION("Renesas RZ/V2H(P) WDT Watchdog Driver"); +MODULE_LICENSE("GPL"); |