Commit 4334ba95 authored by Derek Kozel's avatar Derek Kozel
Browse files

partner/aller, nereid, tagus: Remove deprecated param

get_csr_header parameter with_shadow_base
removed/deprecated in litex 2a8d8c8f. New default
behavior matches the desired behavior in these targets.
parent 3012cf75
...@@ -181,8 +181,7 @@ class AllerSoC(SoCSDRAM): ...@@ -181,8 +181,7 @@ class AllerSoC(SoCSDRAM):
def generate_software_header(self, filename): def generate_software_header(self, filename):
csr_header = get_csr_header(self.csr_regions, csr_header = get_csr_header(self.csr_regions,
self.constants, self.constants,
with_access_functions=False, with_access_functions=False)
with_shadow_base=False)
tools.write_to_file(filename, csr_header) tools.write_to_file(filename, csr_header)
......
...@@ -178,8 +178,7 @@ class NereidSoC(SoCSDRAM): ...@@ -178,8 +178,7 @@ class NereidSoC(SoCSDRAM):
def generate_software_header(self, filename): def generate_software_header(self, filename):
csr_header = get_csr_header(self.csr_regions, csr_header = get_csr_header(self.csr_regions,
self.constants, self.constants,
with_access_functions=False, with_access_functions=False)
with_shadow_base=False)
tools.write_to_file(filename, csr_header) tools.write_to_file(filename, csr_header)
......
...@@ -179,8 +179,7 @@ class TagusSoC(SoCSDRAM): ...@@ -179,8 +179,7 @@ class TagusSoC(SoCSDRAM):
def generate_software_header(self, filename): def generate_software_header(self, filename):
csr_header = get_csr_header(self.csr_regions, csr_header = get_csr_header(self.csr_regions,
self.constants, self.constants,
with_access_functions=False, with_access_functions=False)
with_shadow_base=False)
tools.write_to_file(filename, csr_header) tools.write_to_file(filename, csr_header)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment