diff options
author | Paul Cercueil <paul@crapouillou.net> | 2019-08-10 15:36:20 +0300 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2019-08-12 20:59:50 +0300 |
commit | 03d570e1a4dc669457af2888999ecc9548fc0d2a (patch) | |
tree | fa59c1281e3aa7acd5846d1082731995dfb7a9f5 /drivers/clk/ingenic/jz4725b-cgu.c | |
parent | 568b9de48d80bcf1a92e2c4fa67651abbb8ebfe2 (diff) | |
download | linux-03d570e1a4dc669457af2888999ecc9548fc0d2a.tar.xz |
clk: ingenic: Use CLK_OF_DECLARE_DRIVER macro
By using CLK_OF_DECLARE_DRIVER instead of the CLK_OF_DECLARE macro, we
allow the driver to probe also as a platform driver.
While this driver does not have code to probe as a platform driver, this
is still useful for probing children devices in the case where the
device node is compatible with "simple-mfd".
Signed-off-by: Paul Cercueil <paul@crapouillou.net>
Link: https://lkml.kernel.org/r/20190810123620.27238-1-paul@crapouillou.net
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Diffstat (limited to 'drivers/clk/ingenic/jz4725b-cgu.c')
-rw-r--r-- | drivers/clk/ingenic/jz4725b-cgu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/ingenic/jz4725b-cgu.c b/drivers/clk/ingenic/jz4725b-cgu.c index 2642d36d1e2c..a3b4635f6278 100644 --- a/drivers/clk/ingenic/jz4725b-cgu.c +++ b/drivers/clk/ingenic/jz4725b-cgu.c @@ -257,4 +257,4 @@ static void __init jz4725b_cgu_init(struct device_node *np) ingenic_cgu_register_syscore_ops(cgu); } -CLK_OF_DECLARE(jz4725b_cgu, "ingenic,jz4725b-cgu", jz4725b_cgu_init); +CLK_OF_DECLARE_DRIVER(jz4725b_cgu, "ingenic,jz4725b-cgu", jz4725b_cgu_init); |