summaryrefslogtreecommitdiffstats
path: root/drivers/clk/meson/g12a.c
diff options
context:
space:
mode:
authorKevin Hilman <khilman@baylibre.com>2020-11-18 11:14:05 -0800
committerJerome Brunet <jbrunet@baylibre.com>2020-11-23 09:08:23 +0100
commit20425f6319480e84f48261fc7c0e4ce61a6d333e (patch)
treee1b3fb65784a3c40b03306bf44c8b295940f4ca9 /drivers/clk/meson/g12a.c
parentbae69bfa3a586493469078ec4ca35499b754ba5c (diff)
downloadlinux-20425f6319480e84f48261fc7c0e4ce61a6d333e.tar.bz2
clk: meson: enable building as modules
Make it possible to build all clk drivers as modules, but default remains built-in. No functional changes. Signed-off-by: Kevin Hilman <khilman@baylibre.com> Signed-off-by: Jerome Brunet <jbrunet@baylibre.com> Acked-by: Stephen Boyd <sboyd@kernel.org> Link: https://lore.kernel.org/r/20201118191405.36798-1-khilman@baylibre.com
Diffstat (limited to 'drivers/clk/meson/g12a.c')
-rw-r--r--drivers/clk/meson/g12a.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/clk/meson/g12a.c b/drivers/clk/meson/g12a.c
index 108e4491b1e2..3cb8196c8e29 100644
--- a/drivers/clk/meson/g12a.c
+++ b/drivers/clk/meson/g12a.c
@@ -15,6 +15,7 @@
#include <linux/of_device.h>
#include <linux/platform_device.h>
#include <linux/clk.h>
+#include <linux/module.h>
#include "clk-mpll.h"
#include "clk-pll.h"
@@ -5372,6 +5373,7 @@ static const struct of_device_id clkc_match_table[] = {
},
{}
};
+MODULE_DEVICE_TABLE(of, clkc_match_table);
static struct platform_driver g12a_driver = {
.probe = meson_g12a_probe,
@@ -5381,4 +5383,5 @@ static struct platform_driver g12a_driver = {
},
};
-builtin_platform_driver(g12a_driver);
+module_platform_driver(g12a_driver);
+MODULE_LICENSE("GPL v2");