diff options
author | Dinh Nguyen <dinguyen@kernel.org> | 2019-06-25 08:55:35 -0500 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2019-06-25 14:39:51 -0700 |
commit | 16e3c572cdc91d7e26489f3be8338da936c08495 (patch) | |
tree | 052d56dd1b8976ff95fbbaf6e714d71bfa1aa5b4 | |
parent | 3b5015c4d834a70233c4419b07375254e4675e0b (diff) | |
download | linux-16e3c572cdc91d7e26489f3be8338da936c08495.tar.gz linux-16e3c572cdc91d7e26489f3be8338da936c08495.tar.bz2 linux-16e3c572cdc91d7e26489f3be8338da936c08495.zip |
clk: socfpga: stratix10: fix divider entry for the emac clocks
The fixed dividers for the emac clocks should be 2 not 4.
Signed-off-by: Dinh Nguyen <dinguyen@kernel.org>
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
-rw-r--r-- | drivers/clk/socfpga/clk-s10.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/clk/socfpga/clk-s10.c b/drivers/clk/socfpga/clk-s10.c index 609dd722675e..993f3a73c71e 100644 --- a/drivers/clk/socfpga/clk-s10.c +++ b/drivers/clk/socfpga/clk-s10.c @@ -103,9 +103,9 @@ static const struct stratix10_perip_cnt_clock s10_main_perip_cnt_clks[] = { { STRATIX10_NOC_CLK, "noc_clk", NULL, noc_mux, ARRAY_SIZE(noc_mux), 0, 0, 0, 0x3C, 1}, { STRATIX10_EMAC_A_FREE_CLK, "emaca_free_clk", NULL, emaca_free_mux, ARRAY_SIZE(emaca_free_mux), - 0, 0, 4, 0xB0, 0}, + 0, 0, 2, 0xB0, 0}, { STRATIX10_EMAC_B_FREE_CLK, "emacb_free_clk", NULL, emacb_free_mux, ARRAY_SIZE(emacb_free_mux), - 0, 0, 4, 0xB0, 1}, + 0, 0, 2, 0xB0, 1}, { STRATIX10_EMAC_PTP_FREE_CLK, "emac_ptp_free_clk", NULL, emac_ptp_free_mux, ARRAY_SIZE(emac_ptp_free_mux), 0, 0, 4, 0xB0, 2}, { STRATIX10_GPIO_DB_FREE_CLK, "gpio_db_free_clk", NULL, gpio_db_free_mux, |