mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
Merge pull request #1760 from motec-research/dts_linux_fix
tools/litex_json2dts_linux: fix missed sdcard_ references
This commit is contained in:
commit
33efa09663
1 changed files with 2 additions and 2 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue