Skip to content

Commit

Permalink
SoC: pass correct arguments from cmdline to SoC constructor
Browse files Browse the repository at this point in the history
Signed-off-by: Yann Sionneau <[email protected]>
  • Loading branch information
fallen committed Mar 11, 2024
1 parent 074c87a commit 4b4a324
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion sucrela.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,11 @@ def main():
LATest()
exit(0)

soc = LASoC(sys_clk_freq=args.sys_clk_freq, **parser.soc_argdict)
soc = LASoC(sys_clk_freq=args.sys_clk_freq,
revision=args.revision,
device=args.device,
sdram_device=args.sdram_device,
**parser.soc_argdict)

builder = Builder(soc, **parser.builder_argdict)
if args.build:
Expand Down

0 comments on commit 4b4a324

Please sign in to comment.