[rom_ctrl] Remove a bogus TODO comment
When I wrote this, I imagined that a bus access when the ROM checker
was running should result in an error response. What we've ended up
with is that the bus access will just stall until the checker is done,
which seems like a perfectly reasonable behaviour. Let's just keep
that!
Signed-off-by: Rupert Swarbrick <rswarbrick@lowrisc.org>
diff --git a/hw/ip/rom_ctrl/rtl/rom_ctrl.sv b/hw/ip/rom_ctrl/rtl/rom_ctrl.sv
index 83ee3bb..e18e219 100644
--- a/hw/ip/rom_ctrl/rtl/rom_ctrl.sv
+++ b/hw/ip/rom_ctrl/rtl/rom_ctrl.sv
@@ -134,7 +134,6 @@
.intg_error_o (rom_integrity_error),
.rdata_i (bus_rom_rdata[31:0]),
.rvalid_i (bus_rom_rvalid),
- // TODO: Send an error on access when locked
.rerror_i (2'b00)
);