diff options
author | Arnd Bergmann <arnd@arndb.de> | 2024-09-11 15:04:50 +0300 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2024-09-12 17:33:12 +0300 |
commit | e2a79105903a9122c2717515454f9c05dd9081e4 (patch) | |
tree | 3582d3e8a4b2dec154a7c40edd076606b86774ea | |
parent | a015b1828653b591de0aa5303c0dbc4235935f94 (diff) | |
download | linux-e2a79105903a9122c2717515454f9c05dd9081e4.tar.xz |
clk: ep93xx: add module license
When configured as a lodable module, this driver produces
a build time warning:
ERROR: modpost: missing MODULE_LICENSE() in drivers/clk/clk-ep93xx.o
All all three tags for license, author and description based
on the header.
Acked-by: Alexander Sverdlin <alexander.sverdlin@gmail.com>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
-rw-r--r-- | drivers/clk/clk-ep93xx.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/clk/clk-ep93xx.c b/drivers/clk/clk-ep93xx.c index 4727c06a59ba..26317623d9d5 100644 --- a/drivers/clk/clk-ep93xx.c +++ b/drivers/clk/clk-ep93xx.c @@ -844,3 +844,7 @@ static struct auxiliary_driver ep93xx_clk_driver = { .id_table = ep93xx_clk_ids, }; module_auxiliary_driver(ep93xx_clk_driver); + +MODULE_LICENSE("GPL"); +MODULE_AUTHOR("Nikita Shubin <nikita.shubin@maquefel.me>"); +MODULE_DESCRIPTION("Clock control for Cirrus EP93xx chips"); |