bus: removed outdated warn regarding 64 B block sizes
this warn is outdated as 64 B blocks are very common, and even the default size for some CPU types. E.g., arm_detailed.
This commit is contained in:
parent
a731f8f9dd
commit
9cd0c5ecc8
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue