1
0
mirror of https://github.com/antonblanchard/microwatt.git synced 2026-02-06 00:05:02 +00:00

Fix clk_gen_bypass

I broke clk_gen_bypass when updating the SOC reset code.

Fixes 03fd06deaf ("Rework SOC reset")
Signed-off-by: Anton Blanchard <anton@linux.ibm.com>
This commit is contained in:
Anton Blanchard
2019-09-12 12:25:18 +10:00
committed by Anton Blanchard
parent 80aa781454
commit d89a9929fd

View File

@@ -14,7 +14,7 @@ architecture bypass of clock_generator is
begin
pll_locked_out <= pll_rst_in;
pll_locked_out <= not pll_rst_in;
pll_clk_out <= ext_clk;
end architecture bypass;