soc/integration/cpu_interface: do not generate constant access functions when with_access_functions is set to False
This commit is contained in:
parent
20c859d45c
commit
d05d170b75
|
@ -144,9 +144,10 @@ def get_csr_header(regions, constants, with_access_functions=True):
|
|||
else:
|
||||
value = str(value)
|
||||
ctype = "int"
|
||||
r += "#define "+name+" "+value+"\n"
|
||||
r += "static inline "+ctype+" "+name.lower()+"_read(void) {\n"
|
||||
r += "\treturn "+value+";\n}\n"
|
||||
r += "#define "+name+" "+value+"\n"
|
||||
if with_access_functions:
|
||||
r += "static inline "+ctype+" "+name.lower()+"_read(void) {\n"
|
||||
r += "\treturn "+value+";\n}\n"
|
||||
|
||||
r += "\n#endif\n"
|
||||
return r
|
||||
|
|
Loading…
Reference in New Issue