From 2f644efafaa6df54f4e9b8f2710aa6f3647b6940 Mon Sep 17 00:00:00 2001 From: Ron Dreslinski Date: Tue, 31 Jan 2006 14:39:41 -0500 Subject: Fixed some void functions with returns, first stab at cpu ports. cpu/simple/cpu.hh: Adding port definitions to simple cpu, still needs work. mem/bus.hh: no return for void functions --HG-- extra : convert_revision : 42e5bc16af187d3a46eb25a15b600a8a11b88cc5 --- mem/bus.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mem') diff --git a/mem/bus.hh b/mem/bus.hh index 0fd450c4f..e1b29bac6 100644 --- a/mem/bus.hh +++ b/mem/bus.hh @@ -92,7 +92,7 @@ class Bus : public MemObject /** When reciving a Functional requestfrom the peer port (at id), pass it to the bus. */ virtual void recvFunctional(Packet &pkt) - { return bus->recvFunctional(pkt, id); } + { bus->recvFunctional(pkt, id); } /** When reciving a status changefrom the peer port (at id), pass it to the bus. */ -- cgit v1.2.3