Index: uspace/drv/bus/isa/dma_controller.c
===================================================================
--- uspace/drv/bus/isa/dma_controller.c	(revision a0d1d9d4e874cc0afc7c3062290913bbff199bc9)
+++ uspace/drv/bus/isa/dma_controller.c	(revision a066c1b9ea47e21532a29df8a97b50ad716bbd77)
@@ -272,5 +272,5 @@
 
 	/* 16 bit transfers are a bit special */
-	ddf_msg(LVL_DEBUG, "Unspoiled address: %p and size: %zu.\n", pa, size);
+	ddf_msg(LVL_DEBUG, "Unspoiled address: %p and size: %zu.", pa, size);
 	if (channel > 4) {
 		/* Size must be aligned to 16 bits */
@@ -285,5 +285,5 @@
 
 	ddf_msg(LVL_DEBUG,
-	    "Setting channel %u, to address %p(%zu), mode %hhx.\n",
+	    "Setting channel %u, to address %p(%zu), mode %hhx.",
 	    channel, pa, size, mode);
 
@@ -295,5 +295,5 @@
 	/* Set mode */
 	value = DMA_MODE_CHAN_TO_REG(channel) | mode;
-	ddf_msg(LVL_DEBUG2, "Writing mode byte: %p:%hhx.\n",
+	ddf_msg(LVL_DEBUG2, "Writing mode byte: %p:%hhx.",
 	    dma_channel.mode_address, value);
 	pio_write_8(dma_channel.mode_address, value);
@@ -304,5 +304,5 @@
 	/* Low byte */
 	value = pa & 0xff;
-	ddf_msg(LVL_DEBUG2, "Writing address low byte: %p:%hhx.\n",
+	ddf_msg(LVL_DEBUG2, "Writing address low byte: %p:%hhx.",
 	    dma_channel.offset_reg_address, value);
 	pio_write_8(dma_channel.offset_reg_address, value);
@@ -310,5 +310,5 @@
 	/* High byte */
 	value = (pa >> 8) & 0xff;
-	ddf_msg(LVL_DEBUG2, "Writing address high byte: %p:%hhx.\n",
+	ddf_msg(LVL_DEBUG2, "Writing address high byte: %p:%hhx.",
 	    dma_channel.offset_reg_address, value);
 	pio_write_8(dma_channel.offset_reg_address, value);
@@ -316,5 +316,5 @@
 	/* Page address - third byte */
 	value = (pa >> 16) & 0xff;
-	ddf_msg(LVL_DEBUG2, "Writing address page byte: %p:%hhx.\n",
+	ddf_msg(LVL_DEBUG2, "Writing address page byte: %p:%hhx.",
 	    dma_channel.page_reg_address, value);
 	pio_write_8(dma_channel.page_reg_address, value);
@@ -325,5 +325,5 @@
 	/* Low byte */
 	value = (size - 1) & 0xff;
-	ddf_msg(LVL_DEBUG2, "Writing size low byte: %p:%hhx.\n",
+	ddf_msg(LVL_DEBUG2, "Writing size low byte: %p:%hhx.",
 	    dma_channel.size_reg_address, value);
 	pio_write_8(dma_channel.size_reg_address, value);
@@ -331,5 +331,5 @@
 	/* High byte */
 	value = ((size - 1) >> 8) & 0xff;
-	ddf_msg(LVL_DEBUG2, "Writing size high byte: %p:%hhx.\n",
+	ddf_msg(LVL_DEBUG2, "Writing size high byte: %p:%hhx.",
 	    dma_channel.size_reg_address, value);
 	pio_write_8(dma_channel.size_reg_address, value);
