diff options
Diffstat (limited to 'drivers/usb/host/ohci-dbg.c')
| -rw-r--r-- | drivers/usb/host/ohci-dbg.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/host/ohci-dbg.c b/drivers/usb/host/ohci-dbg.c index e4bcb62b930..31b81f9eacd 100644 --- a/drivers/usb/host/ohci-dbg.c +++ b/drivers/usb/host/ohci-dbg.c @@ -29,14 +29,14 @@ urb_print(struct urb * urb, char * str, int small, int status)  	unsigned int pipe= urb->pipe;  	if (!urb->dev || !urb->dev->bus) { -		dbg("%s URB: no dev", str); +		printk(KERN_DEBUG "%s URB: no dev\n", str);  		return;  	}  #ifndef	OHCI_VERBOSE_DEBUG  	if (status != 0)  #endif -	dbg("%s %p dev=%d ep=%d%s-%s flags=%x len=%d/%d stat=%d", +	printk(KERN_DEBUG "%s %p dev=%d ep=%d%s-%s flags=%x len=%d/%d stat=%d\n",  		    str,  		    urb,  		    usb_pipedevice (pipe),  |