2
0
mirror of https://github.com/edk2-porting/linux-next.git synced 2024-12-25 13:43:55 +08:00

usb: renesas_usbhs: put obtained dma channel info to debug message

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Kuninori Morimoto 2011-06-21 09:33:43 +09:00 committed by Greg Kroah-Hartman
parent bf929b3bee
commit 4ce6880563

View File

@ -831,7 +831,7 @@ static void usbhsf_dma_init(struct usbhs_priv *priv,
&fifo->rx_slave); &fifo->rx_slave);
if (fifo->tx_chan || fifo->rx_chan) if (fifo->tx_chan || fifo->rx_chan)
dev_info(dev, "enable DMAEngine (%s%s%s)\n", dev_dbg(dev, "enable DMAEngine (%s%s%s)\n",
fifo->name, fifo->name,
fifo->tx_chan ? "[TX]" : " ", fifo->tx_chan ? "[TX]" : " ",
fifo->rx_chan ? "[RX]" : " "); fifo->rx_chan ? "[RX]" : " ");