mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-30 00:00:11 +01:00
removed unnecessary closing bracket
Signed-off-by: Pascal Bauer <pascal.bauer@rwth-aachen.de>
This commit is contained in:
parent
0644f1310d
commit
3840fa1fa6
1 changed files with 2 additions and 2 deletions
|
@ -118,9 +118,9 @@ Test(fpga, gpu_dma, .description = "GPU DMA tests")
|
||||||
|
|
||||||
if (dma != nullptr and dma->connectLoopback()) {
|
if (dma != nullptr and dma->connectLoopback()) {
|
||||||
memcpyFuncs.push_back({
|
memcpyFuncs.push_back({
|
||||||
"DMA memcpy", [&] {
|
"DMA memcpy", [&] (){
|
||||||
dma->makeAccesibleFromVA(src.getMemoryBlock());
|
dma->makeAccesibleFromVA(src.getMemoryBlock());
|
||||||
dma->makeAccesibleFromVA(dst.getMemoryBlock()));
|
dma->makeAccesibleFromVA(dst.getMemoryBlock());
|
||||||
dma->memcpy(src.getMemoryBlock(), dst.getMemoryBlock(), len);
|
dma->memcpy(src.getMemoryBlock(), dst.getMemoryBlock(), len);
|
||||||
}});
|
}});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue