diff options
author | Arnd Bergmann <arnd@arndb.de> | 2018-10-05 18:11:15 +0200 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2018-10-08 04:53:28 +0200 |
commit | 9e6dbc3d5cfc1afec5aefe87a7fffd5b9d44f09a (patch) | |
tree | 4af68128cdc9d2af597266f0d701a9ce06be3d8f /drivers/clk/keystone/pll.c | |
parent | clk: keystone: Enable TISCI clocks if K3_ARCH (diff) | |
download | linux-9e6dbc3d5cfc1afec5aefe87a7fffd5b9d44f09a.tar.xz linux-9e6dbc3d5cfc1afec5aefe87a7fffd5b9d44f09a.zip |
clk: keystone: add missing MODULE_LICENSE
A randconfig build showed that two clk modules have no license tag:
WARNING: modpost: missing MODULE_LICENSE() in drivers/clk/keystone/gate.o
see include/linux/module.h for more information
WARNING: modpost: missing MODULE_LICENSE() in drivers/clk/keystone/pll.o
see include/linux/module.h for more information
Add the appropriate information from the comment at the start of the
two files.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Santosh Shilimkar <ssantosh@krenel.org>
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Diffstat (limited to 'drivers/clk/keystone/pll.c')
-rw-r--r-- | drivers/clk/keystone/pll.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/clk/keystone/pll.c b/drivers/clk/keystone/pll.c index e7e840fb74ea..19c9dc37c58f 100644 --- a/drivers/clk/keystone/pll.c +++ b/drivers/clk/keystone/pll.c @@ -338,3 +338,8 @@ static void __init of_pll_mux_clk_init(struct device_node *node) pr_err("%s: error registering mux %s\n", __func__, clk_name); } CLK_OF_DECLARE(pll_mux_clock, "ti,keystone,pll-mux-clock", of_pll_mux_clk_init); + +MODULE_LICENSE("GPL"); +MODULE_DESCRIPTION("PLL clock driver for Keystone devices"); +MODULE_AUTHOR("Murali Karicheri <m-karicheri2@ti.com>"); +MODULE_AUTHOR("Santosh Shilimkar <santosh.shilimkar@ti.com>"); |