From b4553690626cca8f180442a0363dbcaecac88db6 Mon Sep 17 00:00:00 2001 From: Andrew Morton Date: Wed, 20 Mar 2013 15:06:48 +1100 Subject: [PATCH] dma-debug-fix-locking-bug-in-check_unmap-fix restore 80-col trickery to be consistent with the rest of the file Cc: Alexander Duyck Cc: Jakub Kicinski Cc: Joerg Roedel Cc: Konrad Rzeszutek Wilk Cc: Shuah Khan Signed-off-by: Andrew Morton --- lib/dma-debug.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lib/dma-debug.c b/lib/dma-debug.c index 724bd4d2c32e..d3e06a5e981e 100644 --- a/lib/dma-debug.c +++ b/lib/dma-debug.c @@ -867,10 +867,13 @@ static void check_unmap(struct dma_debug_entry *ref) if (dma_mapping_error(ref->dev, ref->dev_addr)) { err_printk(ref->dev, NULL, - "DMA-API: device driver tries to free an invalid DMA memory address\n"); + "DMA-API: device driver tries to free an " + "invalid DMA memory address\n"); } else { err_printk(ref->dev, NULL, - "DMA-API: device driver tries to free DMA memory it has not allocated [device address=0x%016llx] [size=%llu bytes]\n", + "DMA-API: device driver tries to free DMA " + "memory it has not allocated [device " + "address=0x%016llx] [size=%llu bytes]\n", ref->dev_addr, ref->size); } return; -- 2.39.5