diff options
author | Michael Turquette <mturquette@baylibre.com> | 2016-04-28 12:01:51 -0700 |
---|---|---|
committer | Michael Turquette <mturquette@baylibre.com> | 2016-06-22 18:02:44 -0700 |
commit | c0daa3e6f5b0b707f5c4b408bc8ef541c9a7742a (patch) | |
tree | 9de2ea32087aac9cd885a2e818f63b25f4682a8e /drivers/clk/meson/Makefile | |
parent | ab95d6e8ccd3a7514114d08f8b8e5ca0c303c412 (diff) |
clk: meson8b: clean up composite clocks
Remove the composite clock registration function and helpers. Replace
unnecessary configuration struct with static initialization of the
desired clock type.
To preserve git bisect this patch also flips the switch and starts using
of_clk_add_hw_provider instead of the deprecated meson_clk_register_clks
method. As a byproduct clk.c can be deleted.
Tested-by: Kevin Hilman <khilman@baylibre.com>
Signed-off-by: Michael Turquette <mturquette@baylibre.com>
Diffstat (limited to 'drivers/clk/meson/Makefile')
-rw-r--r-- | drivers/clk/meson/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/meson/Makefile b/drivers/clk/meson/Makefile index 6d45531df9ab..901b5d435812 100644 --- a/drivers/clk/meson/Makefile +++ b/drivers/clk/meson/Makefile @@ -2,5 +2,5 @@ # Makefile for Meson specific clk # -obj-y += clkc.o clk-pll.o clk-cpu.o +obj-y += clk-pll.o clk-cpu.o obj-y += meson8b-clkc.o |