tools/litex_json2dts_linux: fix missed sdcard_ references

This commit is contained in:
Richard Tucker 2023-08-10 14:19:29 +10:00 committed by Andrew Dennison
parent 14012263af
commit 058cdd646b
1 changed files with 2 additions and 2 deletions

View File

@ -247,7 +247,7 @@ def generate_dts(d, initrd_start=None, initrd_size=None, initrd=None, root_devic
"""
# Voltage Regulator for LiteSDCard (if applicable) --------------------------------------------
if "sdcore" in d["csr_bases"]:
if "sdcard_core" in d["csr_bases"]:
dts += """
vreg_mmc: vreg_mmc {{
compatible = "regulator-fixed";
@ -419,7 +419,7 @@ def generate_dts(d, initrd_start=None, initrd_size=None, initrd=None, root_devic
# SDCard ---------------------------------------------------------------------------------------
if "sdcore" in d["csr_bases"]:
if "sdcard_core" in d["csr_bases"]:
dts += """
mmc0: mmc@{mmc_csr_base:x} {{
compatible = "litex,mmc";