Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

dmaengine: acpi-dma: align debug message with flow

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>

authored by

Andy Shevchenko and committed by
Vinod Koul
36bf8fc4 a02eb37a

+1 -1
+1 -1
drivers/dma/acpi-dma.c
··· 438 438 return ERR_PTR(-ENODEV); 439 439 } 440 440 441 - dev_dbg(dev, "found DMA channel \"%s\" at index %d\n", name, index); 441 + dev_dbg(dev, "Looking for DMA channel \"%s\" at index %d...\n", name, index); 442 442 return acpi_dma_request_slave_chan_by_index(dev, index); 443 443 } 444 444 EXPORT_SYMBOL_GPL(acpi_dma_request_slave_chan_by_name);