From 95c588f69ee5bf5ba5884ca156ac9d5c9309f6da Mon Sep 17 00:00:00 2001 From: Lad Prabhakar Date: Wed, 11 Sep 2024 14:20:31 +0100 Subject: 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 Signed-off-by: Lad Prabhakar Reviewed-by: Guenter Roeck Link: https://lore.kernel.org/r/20240911132031.544479-1-prabhakar.mahadev-lad.rj@bp.renesas.com Signed-off-by: Guenter Roeck Signed-off-by: Wim Van Sebroeck --- drivers/watchdog/rzv2h_wdt.c | 1 + 1 file changed, 1 insertion(+) 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 "); MODULE_DESCRIPTION("Renesas RZ/V2H(P) WDT Watchdog Driver"); +MODULE_LICENSE("GPL"); -- cgit v1.2.3