mirror of
https://github.com/litex-hub/litex-boards.git
synced 2025-01-03 03:43:36 -05:00
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:
parent
3012cf75fe
commit
4334ba9527
3 changed files with 3 additions and 6 deletions
|
@ -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)
|
||||
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue