summaryrefslogtreecommitdiff
path: root/src/mem/port.hh
diff options
context:
space:
mode:
authorGabe Black <gabeblack@google.com>2019-08-16 13:21:56 -0700
committerGabe Black <gabeblack@google.com>2019-08-23 21:13:33 +0000
commit41f38a559b6b6ed50d821f16b742575d1487d1cf (patch)
tree3535860ac5b519478bcaf753084fa06b091f39b0 /src/mem/port.hh
parentc08351f4d399f56ec6ed6c81b39e52f55a7bc56f (diff)
downloadgem5-41f38a559b6b6ed50d821f16b742575d1487d1cf.tar.xz
mem: Put gem5 protocols in their own directory.
This reduces clutter in the src/mem directory, and makes it clear that those protocols are for the classic gem5 memory system, not ruby, TLM, etc. Change-Id: I6cf6b21134d82f4f01991e4fe92dbea8c7e82081 Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/20231 Tested-by: kokoro <noreply+kokoro@google.com> Maintainer: Gabe Black <gabeblack@google.com> Reviewed-by: Andreas Sandberg <andreas.sandberg@arm.com>
Diffstat (limited to 'src/mem/port.hh')
-rw-r--r--src/mem/port.hh6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mem/port.hh b/src/mem/port.hh
index 16257ed4f..847bd1e7d 100644
--- a/src/mem/port.hh
+++ b/src/mem/port.hh
@@ -51,10 +51,10 @@
#define __MEM_PORT_HH__
#include "base/addr_range.hh"
-#include "mem/atomic_protocol.hh"
-#include "mem/functional_protocol.hh"
#include "mem/packet.hh"
-#include "mem/timing_protocol.hh"
+#include "mem/protocol/atomic.hh"
+#include "mem/protocol/functional.hh"
+#include "mem/protocol/timing.hh"
#include "sim/port.hh"
class SimObject;