tests,dma: fix "16MB" offset

This commit is contained in:
William Wang 2022-05-14 19:50:53 +08:00
parent be7bdc08cd
commit 879367abc4
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ uint64_t random_number() {
inline uint64_t random_memory_offset() {
// max 16MB
return random_number() % 0x400000000UL;
return random_number() % 0x1000000UL;
}
void dma_test() {