diff options
author | Paul Cercueil <paul@crapouillou.net> | 2019-08-10 14:36:20 +0200 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2019-08-12 19:59:50 +0200 |
commit | 03d570e1a4dc669457af2888999ecc9548fc0d2a (patch) | |
tree | fa59c1281e3aa7acd5846d1082731995dfb7a9f5 /drivers/clk/ingenic/jz4770-cgu.c | |
parent | clk: ingenic/jz4740: Fix "pll half" divider not read/written properly (diff) | |
download | linux-03d570e1a4dc669457af2888999ecc9548fc0d2a.tar.xz linux-03d570e1a4dc669457af2888999ecc9548fc0d2a.zip |
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/jz4770-cgu.c')
-rw-r--r-- | drivers/clk/ingenic/jz4770-cgu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/ingenic/jz4770-cgu.c b/drivers/clk/ingenic/jz4770-cgu.c index eebc1bea3841..956dd653a43d 100644 --- a/drivers/clk/ingenic/jz4770-cgu.c +++ b/drivers/clk/ingenic/jz4770-cgu.c @@ -443,4 +443,4 @@ static void __init jz4770_cgu_init(struct device_node *np) } /* We only probe via devicetree, no need for a platform driver */ -CLK_OF_DECLARE(jz4770_cgu, "ingenic,jz4770-cgu", jz4770_cgu_init); +CLK_OF_DECLARE_DRIVER(jz4770_cgu, "ingenic,jz4770-cgu", jz4770_cgu_init); |