* [PATCH] usb: musb: omap2430: make complain on -EPROBE_DEFER dev_dbg @ 2016-11-09 14:10 Ladislav Michl [not found] ` <20161109141026.GF20859-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org> 0 siblings, 1 reply; 3+ messages in thread From: Ladislav Michl @ 2016-11-09 14:10 UTC (permalink / raw) To: Bin Liu, Tony Lindgren Cc: linux-omap-u79uwXL29TY76Z2rM5mHXA, linux-usb-u79uwXL29TY76Z2rM5mHXA There is no point having this complaint to be dev_err as it is just adding noise to bootlog. Signed-off-by: Ladislav Michl <ladis-6z/3iImG2C8G8FEW9MqTrA@public.gmane.org> --- drivers/usb/musb/omap2430.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/usb/musb/omap2430.c b/drivers/usb/musb/omap2430.c index 451b372..7c9aa5e 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; } -- 2.1.4 -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply related [flat|nested] 3+ messages in thread
[parent not found: <20161109141026.GF20859-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>]
* Re: [PATCH] usb: musb: omap2430: make complain on -EPROBE_DEFER dev_dbg [not found] ` <20161109141026.GF20859-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org> @ 2016-11-09 17:48 ` Tony Lindgren [not found] ` <20161109174847.GY2428-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org> 0 siblings, 1 reply; 3+ messages in thread From: Tony Lindgren @ 2016-11-09 17:48 UTC (permalink / raw) To: Ladislav Michl Cc: Bin Liu, linux-omap-u79uwXL29TY76Z2rM5mHXA, linux-usb-u79uwXL29TY76Z2rM5mHXA * Ladislav Michl <ladis-6z/3iImG2C8G8FEW9MqTrA@public.gmane.org> [161109 07:11]: > There is no point having this complaint to be dev_err as it is just adding > noise to bootlog. Acked-by: Tony Lindgren <tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org> > Signed-off-by: Ladislav Michl <ladis-6z/3iImG2C8G8FEW9MqTrA@public.gmane.org> > --- > drivers/usb/musb/omap2430.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/usb/musb/omap2430.c b/drivers/usb/musb/omap2430.c > index 451b372..7c9aa5e 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; > } > > -- > 2.1.4 > > -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 3+ messages in thread
[parent not found: <20161109174847.GY2428-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>]
* Re: [PATCH] usb: musb: omap2430: make complain on -EPROBE_DEFER dev_dbg [not found] ` <20161109174847.GY2428-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org> @ 2016-11-15 21:13 ` Bin Liu 0 siblings, 0 replies; 3+ messages in thread From: Bin Liu @ 2016-11-15 21:13 UTC (permalink / raw) To: Tony Lindgren Cc: Ladislav Michl, linux-omap-u79uwXL29TY76Z2rM5mHXA, linux-usb-u79uwXL29TY76Z2rM5mHXA On Wed, Nov 09, 2016 at 10:48:48AM -0700, Tony Lindgren wrote: > * Ladislav Michl <ladis-6z/3iImG2C8G8FEW9MqTrA@public.gmane.org> [161109 07:11]: > > There is no point having this complaint to be dev_err as it is just adding > > noise to bootlog. > > Acked-by: Tony Lindgren <tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org> Applied. Thanks. -Bin. > > > Signed-off-by: Ladislav Michl <ladis-6z/3iImG2C8G8FEW9MqTrA@public.gmane.org> > > --- > > drivers/usb/musb/omap2430.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/drivers/usb/musb/omap2430.c b/drivers/usb/musb/omap2430.c > > index 451b372..7c9aa5e 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; > > } > > > > -- > > 2.1.4 > > > > -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-11-15 21:13 UTC | newest] Thread overview: 3+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2016-11-09 14:10 [PATCH] usb: musb: omap2430: make complain on -EPROBE_DEFER dev_dbg Ladislav Michl [not found] ` <20161109141026.GF20859-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org> 2016-11-09 17:48 ` Tony Lindgren [not found] ` <20161109174847.GY2428-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org> 2016-11-15 21:13 ` Bin Liu
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).