From: Alan Stern Date: Mon, 10 Sep 2007 15:35:14 +0000 (-0400) Subject: USB: Get rid of annoying endpoint-release message X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=7477120e34eef65a530cfb3fea5fe612c89669e5;p=mv-sheeva.git USB: Get rid of annoying endpoint-release message This patch (as990) removes an annoying debugging message. Nobody really cares when endpoint pseudo-devices are released. Signed-off-by: Alan Stern Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/core/endpoint.c b/drivers/usb/core/endpoint.c index e0ec7045e86..7dc123d6b2d 100644 --- a/drivers/usb/core/endpoint.c +++ b/drivers/usb/core/endpoint.c @@ -267,7 +267,6 @@ static void ep_device_release(struct device *dev) { struct ep_device *ep_dev = to_ep_device(dev); - dev_dbg(dev, "%s called for %s\n", __FUNCTION__, dev->bus_id); endpoint_free_minor(ep_dev); kfree(ep_dev); }