soc/add_sdram: Fix typo when removing Rocket specific hardcoding.
This commit is contained in:
parent
dff33885de
commit
378c430dd0
|
@ -1366,7 +1366,7 @@ class LiteXSoC(SoC):
|
||||||
else:
|
else:
|
||||||
self.logger.info("Converting MEM data width: {} to {} via Wishbone".format(
|
self.logger.info("Converting MEM data width: {} to {} via Wishbone".format(
|
||||||
port.data_width,
|
port.data_width,
|
||||||
self.mem_bus.data_width))
|
mem_bus.data_width))
|
||||||
# FIXME: Replace WB data-width converter with native AXI converter.
|
# FIXME: Replace WB data-width converter with native AXI converter.
|
||||||
mem_wb = wishbone.Interface(
|
mem_wb = wishbone.Interface(
|
||||||
data_width = self.cpu.mem_axi.data_width,
|
data_width = self.cpu.mem_axi.data_width,
|
||||||
|
|
Loading…
Reference in New Issue