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.
This commit is contained in:
Derek Kozel 2019-12-14 01:04:28 +00:00
parent 3012cf75fe
commit 4334ba9527
3 changed files with 3 additions and 6 deletions

View file

@ -181,8 +181,7 @@ class AllerSoC(SoCSDRAM):
def generate_software_header(self, filename):
csr_header = get_csr_header(self.csr_regions,
self.constants,
with_access_functions=False,
with_shadow_base=False)
with_access_functions=False)
tools.write_to_file(filename, csr_header)

View file

@ -178,8 +178,7 @@ class NereidSoC(SoCSDRAM):
def generate_software_header(self, filename):
csr_header = get_csr_header(self.csr_regions,
self.constants,
with_access_functions=False,
with_shadow_base=False)
with_access_functions=False)
tools.write_to_file(filename, csr_header)

View file

@ -179,8 +179,7 @@ class TagusSoC(SoCSDRAM):
def generate_software_header(self, filename):
csr_header = get_csr_header(self.csr_regions,
self.constants,
with_access_functions=False,
with_shadow_base=False)
with_access_functions=False)
tools.write_to_file(filename, csr_header)