From: Anton Blanchard Date: Thu, 12 Sep 2019 02:25:18 +0000 (+1000) Subject: Fix clk_gen_bypass X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d89a9929fd376637a92b294777cfd298a7a28f91;p=microwatt.git Fix clk_gen_bypass I broke clk_gen_bypass when updating the SOC reset code. Fixes 03fd06deaf9f ("Rework SOC reset") Signed-off-by: Anton Blanchard --- diff --git a/fpga/clk_gen_bypass.vhd b/fpga/clk_gen_bypass.vhd index b204329..d583159 100644 --- a/fpga/clk_gen_bypass.vhd +++ b/fpga/clk_gen_bypass.vhd @@ -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;