Merge pull request #864 from gsomlo/gls-json2dts-eth
json2dts.py: fix mac0 reg property style for consistency
This commit is contained in:
commit
60d518a5d3
|
@ -198,9 +198,10 @@ def generate_dts(d, initrd_start=None, initrd_size=None, polling=False):
|
|||
dts += """
|
||||
mac0: mac@{ethmac_csr_base:x} {{
|
||||
compatible = "litex,liteeth";
|
||||
reg = <0x{ethmac_csr_base:x} 0x7c>,
|
||||
<0x{ethphy_csr_base:x} 0x0a>,
|
||||
<0x{ethmac_mem_base:x} 0x{ethmac_mem_size:x}>;
|
||||
reg = <
|
||||
0x{ethmac_csr_base:x} 0x7c
|
||||
0x{ethphy_csr_base:x} 0x0a
|
||||
0x{ethmac_mem_base:x} 0x{ethmac_mem_size:x}>;
|
||||
tx-fifo-depth = <{ethmac_tx_slots}>;
|
||||
rx-fifo-depth = <{ethmac_rx_slots}>;
|
||||
{ethmac_interrupt}
|
||||
|
|
Loading…
Reference in New Issue