diff options
author | Guenter Roeck <[email protected]> | 2022-06-03 06:14:19 -0700 |
---|---|---|
committer | Wim Van Sebroeck <[email protected]> | 2022-06-09 12:20:34 +0200 |
commit | b6c8cd80ace30f308aeec0ecf946f55dec60cc68 (patch) | |
tree | 0c73b88202606f0033a9913e4b13cc2ea992183c | |
parent | 6bfb56e93bcef41859c2d5ab234ffd80b691be35 (diff) |
watchdog: gxp: Add missing MODULE_LICENSE
The build system says:
ERROR: modpost: missing MODULE_LICENSE() in drivers/watchdog/gxp-wdt.o
Add the missing MODULE_LICENSE.
Signed-off-by: Nick Hawkins <[email protected]>
Signed-off-by: Arnd Bergmann <[email protected]>
Link: https://lore.kernel.org/all/[email protected]/
Signed-off-by: Guenter Roeck <[email protected]>
Signed-off-by: Wim Van Sebroeck <[email protected]>
-rw-r--r-- | drivers/watchdog/gxp-wdt.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/watchdog/gxp-wdt.c b/drivers/watchdog/gxp-wdt.c index b0b2d7a6fdde..2fd85be88278 100644 --- a/drivers/watchdog/gxp-wdt.c +++ b/drivers/watchdog/gxp-wdt.c @@ -172,3 +172,4 @@ module_platform_driver(gxp_wdt_driver); MODULE_AUTHOR("Nick Hawkins <[email protected]>"); MODULE_AUTHOR("Jean-Marie Verdun <[email protected]>"); MODULE_DESCRIPTION("Driver for GXP watchdog timer"); +MODULE_LICENSE("GPL"); |