1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

removed empty brackets

Signed-off-by: Pascal Bauer <pascal.bauer@rwth-aachen.de>
This commit is contained in:
Pascal Bauer 2022-12-09 13:15:50 +01:00 committed by Niklas Eiling
parent c77d124682
commit 0644f1310d

View file

@ -118,11 +118,10 @@ Test(fpga, gpu_dma, .description = "GPU DMA tests")
if (dma != nullptr and dma->connectLoopback()) {
memcpyFuncs.push_back({
"DMA memcpy", [&]() {
"DMA memcpy", [&] {
dma->makeAccesibleFromVA(src.getMemoryBlock());
dma->makeAccesibleFromVA(dst.getMemoryBlock()));
dma->memcpy(src.getMemoryBlock(), dst.getMemoryBlock(), len);
dma->memcpy(src.getMemoryBlock(), dst.getMemoryBlock(), len);
}});
}