# HG changeset patch # User Paul Boddie # Date 1709587845 -3600 # Node ID 8f6ff113d00095fb0dbf4f9bea796db698ef67ba # Parent 9c60c22edb25446d728e526520d4fdd1f4d2ec77 Removed debugging output. diff -r 9c60c22edb25 -r 8f6ff113d000 pkg/devices/lib/dma/src/x1600.cc --- a/pkg/devices/lib/dma/src/x1600.cc Tue Feb 27 17:27:25 2024 +0100 +++ b/pkg/devices/lib/dma/src/x1600.cc Mon Mar 04 22:30:45 2024 +0100 @@ -247,11 +247,6 @@ uint8_t transfer_unit_size, enum Dma_x1600_request_type type) { - printf("transfer:%s%s%s%s\n", error() ? " error" : "", - halted() ? " halted" : "", - completed() ? " completed" : "", - _regs[Dma_transfer_count] ? " count" : ""); - // Ensure an absence of address error and halt conditions globally and in this channel. if (error() || halted()) @@ -327,7 +322,6 @@ printf("status = %x\n", (uint32_t) _regs[Dma_control_status]); else { - printf("status = %x\n", (uint32_t) _regs[Dma_control_status]); remaining = _regs[Dma_transfer_count]; ack_irq(); break;