diff options
author | Grygorii Strashko <grygorii.strashko@ti.com> | 2016-11-29 17:07:57 -0600 |
---|---|---|
committer | Stephen Boyd <sboyd@codeaurora.org> | 2016-12-08 15:09:12 -0800 |
commit | f8d17344a60921c2387759fc0a85aa64299d1ec6 (patch) | |
tree | 1743190ff671377e371722d00480be438864ad37 | |
parent | d86d46af84855403c00018be1c3e7bc190f2a6cd (diff) | |
download | talos-obmc-linux-f8d17344a60921c2387759fc0a85aa64299d1ec6.tar.gz talos-obmc-linux-f8d17344a60921c2387759fc0a85aa64299d1ec6.zip |
clk: ti: dra7: fix "failed to lookup clock node gmac_gmii_ref_clk_div" boot message
Prevent creating clk alias for non existing gmac_gmii_ref_clk_div clock and,
this way, eliminate excessive error message during boot:
"ti_dt_clocks_register: failed to lookup clock node gmac_gmii_ref_clk_div"
Fixes: c097338ebd3f ("ARM: dts: dra7: cpsw: fix clocks tree")
Signed-off-by: Grygorii Strashko <grygorii.strashko@ti.com>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
-rw-r--r-- | drivers/clk/ti/clk-7xx.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/clk/ti/clk-7xx.c b/drivers/clk/ti/clk-7xx.c index bfa17d33ef3b..9fd6043314eb 100644 --- a/drivers/clk/ti/clk-7xx.c +++ b/drivers/clk/ti/clk-7xx.c @@ -201,7 +201,6 @@ static struct ti_dt_clk dra7xx_clks[] = { DT_CLK(NULL, "atl_dpll_clk_mux", "atl_dpll_clk_mux"), DT_CLK(NULL, "atl_gfclk_mux", "atl_gfclk_mux"), DT_CLK(NULL, "dcan1_sys_clk_mux", "dcan1_sys_clk_mux"), - DT_CLK(NULL, "gmac_gmii_ref_clk_div", "gmac_gmii_ref_clk_div"), DT_CLK(NULL, "gmac_rft_clk_mux", "gmac_rft_clk_mux"), DT_CLK(NULL, "gpu_core_gclk_mux", "gpu_core_gclk_mux"), DT_CLK(NULL, "gpu_hyd_gclk_mux", "gpu_hyd_gclk_mux"), |