From: Ladislav Michl Date: Mon, 21 Nov 2016 14:59:26 +0000 (-0600) Subject: usb: musb: omap2430: make complain on -EPROBE_DEFER dev_dbg X-Git-Tag: v4.10-rc1~150^2~44 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=dc66ba8d9b4832eb23fb5d4b7d3c0a77c749abfc;p=karo-tx-linux.git usb: musb: omap2430: make complain on -EPROBE_DEFER dev_dbg There is no point having this complaint to be dev_err as it is just adding noise to bootlog. Signed-off-by: Ladislav Michl Acked-by: Tony Lindgren Signed-off-by: Bin Liu Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/musb/omap2430.c b/drivers/usb/musb/omap2430.c index 451b37252604..7c9aa5e78666 100644 --- a/drivers/usb/musb/omap2430.c +++ b/drivers/usb/musb/omap2430.c @@ -277,7 +277,7 @@ static int omap2430_musb_init(struct musb *musb) if (status == -ENXIO) return status; - dev_err(dev, "HS USB OTG: no transceiver configured\n"); + dev_dbg(dev, "HS USB OTG: no transceiver configured\n"); return -EPROBE_DEFER; }