diff options
author | Gabe Black <gabeblack@google.com> | 2018-10-12 04:58:50 -0700 |
---|---|---|
committer | Gabe Black <gabeblack@google.com> | 2018-10-12 23:45:51 +0000 |
commit | 9125a43f624653e6238dbb8713658cae2c5d43cd (patch) | |
tree | 268bab703026e5d6497492c97b736f125e875c59 /src/dev/arm/a9scu.cc | |
parent | 413b4e7431b20d9b29dbf66d6677a60205ddd357 (diff) | |
download | gem5-9125a43f624653e6238dbb8713658cae2c5d43cd.tar.xz |
arm: Use little endian packet accessors.
We know data is little endian, so we can use those accessors
explicitly.
Change-Id: Iee337109fcda134e1ac5a700e5141fd7060f9c45
Reviewed-on: https://gem5-review.googlesource.com/c/13457
Reviewed-by: Andreas Sandberg <andreas.sandberg@arm.com>
Maintainer: Andreas Sandberg <andreas.sandberg@arm.com>
Diffstat (limited to 'src/dev/arm/a9scu.cc')
-rw-r--r-- | src/dev/arm/a9scu.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dev/arm/a9scu.cc b/src/dev/arm/a9scu.cc index 86a50ae8e..677101b36 100644 --- a/src/dev/arm/a9scu.cc +++ b/src/dev/arm/a9scu.cc @@ -59,7 +59,7 @@ A9SCU::read(PacketPtr pkt) switch(daddr) { case Control: - pkt->set(1); // SCU already enabled + pkt->setLE(1); // SCU already enabled break; case Config: /* Without making a completely new SCU, we can use the core count field @@ -75,7 +75,7 @@ A9SCU::read(PacketPtr pkt) int smp_bits, core_cnt; smp_bits = power(2,sys->numContexts()) - 1; core_cnt = sys->numContexts() - 1; - pkt->set(smp_bits << 4 | core_cnt); + pkt->setLE(smp_bits << 4 | core_cnt); break; default: // Only configuration register is implemented |