decklink_intensity_pro_4k: Fix default build.

This commit is contained in:
Florent Kermarrec 2021-07-28 12:23:12 +02:00
parent 2f3c886280
commit 1f4383475a
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ def main():
soc = BaseSoC( soc = BaseSoC(
sys_clk_freq = int(float(args.sys_clk_freq)), sys_clk_freq = int(float(args.sys_clk_freq)),
with_pcie = args.with_pcie, with_pcie = args.with_pcie | True, # FIXME: Always enable PCIe for now.
**soc_core_argdict(args) **soc_core_argdict(args)
) )
builder = Builder(soc, **builder_argdict(args)) builder = Builder(soc, **builder_argdict(args))