aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/core/endpoint.c
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@suse.de>2008-08-14 12:37:34 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2008-10-17 17:41:11 -0400
commit69a85942ff2df8e1ee0a3b6afe8b1d85dce58333 (patch)
tree27b0d35194c258e66d063dea78a3fa467916cbef /drivers/usb/core/endpoint.c
parent9908a32e94de2141463e104c9924279ed3509447 (diff)
USB: remove err() macro from usb core code
USB should not be having it's own printk macros, so remove err() and use the system-wide standard of dev_err() wherever possible. In the few places that will not work out, use a basic printk(). Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/core/endpoint.c')
-rw-r--r--drivers/usb/core/endpoint.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/usb/core/endpoint.c b/drivers/usb/core/endpoint.c
index 22912136fc14..946fae43d622 100644
--- a/drivers/usb/core/endpoint.c
+++ b/drivers/usb/core/endpoint.c
@@ -169,7 +169,8 @@ static int usb_endpoint_major_init(void)
169 error = alloc_chrdev_region(&dev, 0, MAX_ENDPOINT_MINORS, 169 error = alloc_chrdev_region(&dev, 0, MAX_ENDPOINT_MINORS,
170 "usb_endpoint"); 170 "usb_endpoint");
171 if (error) { 171 if (error) {
172 err("unable to get a dynamic major for usb endpoints"); 172 printk(KERN_ERR "Unable to get a dynamic major for "
173 "usb endpoints.\n");
173 return error; 174 return error;
174 } 175 }
175 usb_endpoint_major = MAJOR(dev); 176 usb_endpoint_major = MAJOR(dev);