From: Kuninori Morimoto Date: Tue, 21 Jun 2011 00:33:43 +0000 (+0900) Subject: usb: renesas_usbhs: put obtained dma channel info to debug message X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=4ce68805637b798ae6244487879c6716d24a4cbc;p=linux-beck.git usb: renesas_usbhs: put obtained dma channel info to debug message Signed-off-by: Kuninori Morimoto Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/renesas_usbhs/fifo.c b/drivers/usb/renesas_usbhs/fifo.c index 2016a2448ccb..021695de1e9e 100644 --- a/drivers/usb/renesas_usbhs/fifo.c +++ b/drivers/usb/renesas_usbhs/fifo.c @@ -831,7 +831,7 @@ static void usbhsf_dma_init(struct usbhs_priv *priv, &fifo->rx_slave); 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->tx_chan ? "[TX]" : " ", fifo->rx_chan ? "[RX]" : " ");