diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2008-08-18 16:21:04 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2008-10-17 17:41:09 -0400 |
commit | 5909f6ea2bc7f785ceb1bed14c670946a536ff2d (patch) | |
tree | 79a12b6286d65f32f43f70be35ab2b6e17b3c350 /drivers/usb/class | |
parent | 1b29a375fb0b79a11a2d18e7bf5f6da422a35025 (diff) |
USB: remove info() macro from remaining usb drivers
USB should not be having it's own printk macros, so remove info() and
use the system-wide standard of dev_info() wherever possible. In the
few places that will not work out, use a basic printk().
Clean up the remaining usages of this in the drivers/usb/ directory.
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/class')
-rw-r--r-- | drivers/usb/class/cdc-acm.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/usb/class/cdc-acm.c b/drivers/usb/class/cdc-acm.c index c257453fa9de..d9c2b8dafd67 100644 --- a/drivers/usb/class/cdc-acm.c +++ b/drivers/usb/class/cdc-acm.c | |||
@@ -1454,7 +1454,8 @@ static int __init acm_init(void) | |||
1454 | return retval; | 1454 | return retval; |
1455 | } | 1455 | } |
1456 | 1456 | ||
1457 | info(DRIVER_VERSION ":" DRIVER_DESC); | 1457 | printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":" |
1458 | DRIVER_DESC "\n"); | ||
1458 | 1459 | ||
1459 | return 0; | 1460 | return 0; |
1460 | } | 1461 | } |