aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTero Kristo <t-kristo@ti.com>2017-08-21 03:25:38 -0400
committerTero Kristo <t-kristo@ti.com>2017-12-01 08:17:11 -0500
commit1c7de9f27a65a6be7e65b6e9c14c8bef39384814 (patch)
tree92510358bbb30f0da313e863d84da281e3f31888
parent49eec6fbe125d691944d077f6155c3ccac3a0e71 (diff)
clk: ti: omap4: cleanup unnecessary clock aliases
Most of the clock aliases are no longer needed, only leave the timer_32k_ck one in place which is required by OMAP timer code. Signed-off-by: Tero Kristo <t-kristo@ti.com>
-rw-r--r--drivers/clk/ti/clk-44xx.c45
1 files changed, 0 insertions, 45 deletions
diff --git a/drivers/clk/ti/clk-44xx.c b/drivers/clk/ti/clk-44xx.c
index 2005f032c02f..9470e09aad16 100644
--- a/drivers/clk/ti/clk-44xx.c
+++ b/drivers/clk/ti/clk-44xx.c
@@ -697,52 +697,7 @@ const struct omap_clkctrl_data omap4_clkctrl_data[] __initconst = {
697}; 697};
698 698
699static struct ti_dt_clk omap44xx_clks[] = { 699static struct ti_dt_clk omap44xx_clks[] = {
700 DT_CLK("smp_twd", NULL, "mpu_periphclk"),
701 DT_CLK("omapdss_dss", "ick", "dss_fck"),
702 DT_CLK("usbhs_omap", "fs_fck", "usb_host_fs_fck"),
703 DT_CLK("usbhs_omap", "hs_fck", "usb_host_hs_fck"),
704 DT_CLK("musb-omap2430", "ick", "usb_otg_hs_ick"),
705 DT_CLK("usbhs_omap", "usbtll_ick", "usb_tll_hs_ick"),
706 DT_CLK("usbhs_tll", "usbtll_ick", "usb_tll_hs_ick"),
707 DT_CLK("omap_i2c.1", "ick", "dummy_ck"),
708 DT_CLK("omap_i2c.2", "ick", "dummy_ck"),
709 DT_CLK("omap_i2c.3", "ick", "dummy_ck"),
710 DT_CLK("omap_i2c.4", "ick", "dummy_ck"),
711 DT_CLK(NULL, "mailboxes_ick", "dummy_ck"),
712 DT_CLK("omap_hsmmc.0", "ick", "dummy_ck"),
713 DT_CLK("omap_hsmmc.1", "ick", "dummy_ck"),
714 DT_CLK("omap_hsmmc.2", "ick", "dummy_ck"),
715 DT_CLK("omap_hsmmc.3", "ick", "dummy_ck"),
716 DT_CLK("omap_hsmmc.4", "ick", "dummy_ck"),
717 DT_CLK("omap-mcbsp.1", "ick", "dummy_ck"),
718 DT_CLK("omap-mcbsp.2", "ick", "dummy_ck"),
719 DT_CLK("omap-mcbsp.3", "ick", "dummy_ck"),
720 DT_CLK("omap-mcbsp.4", "ick", "dummy_ck"),
721 DT_CLK("omap2_mcspi.1", "ick", "dummy_ck"),
722 DT_CLK("omap2_mcspi.2", "ick", "dummy_ck"),
723 DT_CLK("omap2_mcspi.3", "ick", "dummy_ck"),
724 DT_CLK("omap2_mcspi.4", "ick", "dummy_ck"),
725 DT_CLK(NULL, "uart1_ick", "dummy_ck"),
726 DT_CLK(NULL, "uart2_ick", "dummy_ck"),
727 DT_CLK(NULL, "uart3_ick", "dummy_ck"),
728 DT_CLK(NULL, "uart4_ick", "dummy_ck"),
729 DT_CLK("usbhs_omap", "usbhost_ick", "dummy_ck"),
730 DT_CLK("usbhs_omap", "usbtll_fck", "dummy_ck"),
731 DT_CLK("usbhs_tll", "usbtll_fck", "dummy_ck"),
732 DT_CLK("omap_wdt", "ick", "dummy_ck"),
733 DT_CLK(NULL, "timer_32k_ck", "sys_32k_ck"), 700 DT_CLK(NULL, "timer_32k_ck", "sys_32k_ck"),
734 DT_CLK("4a318000.timer", "timer_sys_ck", "sys_clkin_ck"),
735 DT_CLK("48032000.timer", "timer_sys_ck", "sys_clkin_ck"),
736 DT_CLK("48034000.timer", "timer_sys_ck", "sys_clkin_ck"),
737 DT_CLK("48036000.timer", "timer_sys_ck", "sys_clkin_ck"),
738 DT_CLK("4803e000.timer", "timer_sys_ck", "sys_clkin_ck"),
739 DT_CLK("48086000.timer", "timer_sys_ck", "sys_clkin_ck"),
740 DT_CLK("48088000.timer", "timer_sys_ck", "sys_clkin_ck"),
741 DT_CLK("40138000.timer", "timer_sys_ck", "syc_clk_div_ck"),
742 DT_CLK("4013a000.timer", "timer_sys_ck", "syc_clk_div_ck"),
743 DT_CLK("4013c000.timer", "timer_sys_ck", "syc_clk_div_ck"),
744 DT_CLK("4013e000.timer", "timer_sys_ck", "syc_clk_div_ck"),
745 DT_CLK(NULL, "cpufreq_ck", "dpll_mpu_ck"),
746 { .node_name = NULL }, 701 { .node_name = NULL },
747}; 702};
748 703