aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArnd Bergmann <[email protected]>2024-09-11 12:04:50 +0000
committerArnd Bergmann <[email protected]>2024-09-12 14:33:12 +0000
commite2a79105903a9122c2717515454f9c05dd9081e4 (patch)
tree3582d3e8a4b2dec154a7c40edd076606b86774ea
parenta015b1828653b591de0aa5303c0dbc4235935f94 (diff)
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 <[email protected]> Signed-off-by: Arnd Bergmann <[email protected]>
-rw-r--r--drivers/clk/clk-ep93xx.c4
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 <[email protected]>");
+MODULE_DESCRIPTION("Clock control for Cirrus EP93xx chips");