diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/mem/bus.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mem/bus.cc b/src/mem/bus.cc index 75ece9bc8..ba45bfcb5 100644 --- a/src/mem/bus.cc +++ b/src/mem/bus.cc @@ -483,8 +483,8 @@ BaseBus::findBlockSize() if (max_bs == 0) max_bs = defaultBlockSize; - if (max_bs != 64) - warn_once("Blocksize found to not be 64... hmm... probably not.\n"); + if (max_bs != 64 && max_bs != 32) + warn_once("Blocksize found to not be 32 or 64... hmm... probably not.\n"); cachedBlockSize = max_bs; cachedBlockSizeValid = true; return max_bs; |