]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
dmaengine: acpi-dma: align debug message with flow
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Tue, 16 Feb 2016 09:26:53 +0000 (11:26 +0200)
committerVinod Koul <vinod.koul@intel.com>
Mon, 22 Feb 2016 03:36:09 +0000 (09:06 +0530)
In acpi_dma_request_slave_chan_by_name() the debug message is printed before
the actual matching happens. Correct the message itself to be in align with the
flow.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
drivers/dma/acpi-dma.c

index eed6bda01790f789116bf402bd6b14c36b641ff5..4a748c3435d7d0b5e4ddd5a5a5a70771d9b7ba3c 100644 (file)
@@ -438,7 +438,7 @@ struct dma_chan *acpi_dma_request_slave_chan_by_name(struct device *dev,
                        return ERR_PTR(-ENODEV);
        }
 
-       dev_dbg(dev, "found DMA channel \"%s\" at index %d\n", name, index);
+       dev_dbg(dev, "Looking for DMA channel \"%s\" at index %d...\n", name, index);
        return acpi_dma_request_slave_chan_by_index(dev, index);
 }
 EXPORT_SYMBOL_GPL(acpi_dma_request_slave_chan_by_name);