You need to sign in or sign up before continuing.
提交 1b29a375 编写于 作者: G Greg Kroah-Hartman

USB: remove info() macro from usb/misc 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.
Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
上级 c197a8db
...@@ -895,8 +895,9 @@ static int __init adu_init(void) ...@@ -895,8 +895,9 @@ static int __init adu_init(void)
goto exit; goto exit;
} }
info("adutux " DRIVER_DESC " " DRIVER_VERSION); printk(KERN_INFO "adutux " DRIVER_DESC " " DRIVER_VERSION "\n");
info("adutux is an experimental driver. Use at your own risk"); printk(KERN_INFO "adutux is an experimental driver. "
"Use at your own risk\n");
exit: exit:
dbg(2," %s : leave, return value %d", __func__, result); dbg(2," %s : leave, return value %d", __func__, result);
......
...@@ -428,7 +428,8 @@ static int __init usb_cytherm_init(void) ...@@ -428,7 +428,8 @@ static int __init usb_cytherm_init(void)
return result; return result;
} }
info(DRIVER_VERSION ":" DRIVER_DESC); printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":"
DRIVER_DESC "\n");
return 0; return 0;
} }
......
...@@ -64,7 +64,7 @@ static int emi26_writememory (struct usb_device *dev, int address, ...@@ -64,7 +64,7 @@ static int emi26_writememory (struct usb_device *dev, int address,
static int emi26_set_reset (struct usb_device *dev, unsigned char reset_bit) static int emi26_set_reset (struct usb_device *dev, unsigned char reset_bit)
{ {
int response; int response;
info("%s - %d", __func__, reset_bit); dev_info(&dev->dev, "%s - %d\n", __func__, reset_bit);
/* printk(KERN_DEBUG "%s - %d", __func__, reset_bit); */ /* printk(KERN_DEBUG "%s - %d", __func__, reset_bit); */
response = emi26_writememory (dev, CPUCS_REG, &reset_bit, 1, 0xa0); response = emi26_writememory (dev, CPUCS_REG, &reset_bit, 1, 0xa0);
if (response < 0) { if (response < 0) {
...@@ -254,7 +254,7 @@ static int emi26_probe(struct usb_interface *intf, const struct usb_device_id *i ...@@ -254,7 +254,7 @@ static int emi26_probe(struct usb_interface *intf, const struct usb_device_id *i
{ {
struct usb_device *dev = interface_to_usbdev(intf); struct usb_device *dev = interface_to_usbdev(intf);
info("%s start", __func__); dev_info(&intf->dev, "%s start\n", __func__);
emi26_load_firmware(dev); emi26_load_firmware(dev);
......
...@@ -73,7 +73,7 @@ static int emi62_writememory(struct usb_device *dev, int address, ...@@ -73,7 +73,7 @@ static int emi62_writememory(struct usb_device *dev, int address,
static int emi62_set_reset (struct usb_device *dev, unsigned char reset_bit) static int emi62_set_reset (struct usb_device *dev, unsigned char reset_bit)
{ {
int response; int response;
info("%s - %d", __func__, reset_bit); dev_info(&dev->dev, "%s - %d\n", __func__, reset_bit);
response = emi62_writememory (dev, CPUCS_REG, &reset_bit, 1, 0xa0); response = emi62_writememory (dev, CPUCS_REG, &reset_bit, 1, 0xa0);
if (response < 0) { if (response < 0) {
...@@ -271,7 +271,7 @@ static int emi62_probe(struct usb_interface *intf, const struct usb_device_id *i ...@@ -271,7 +271,7 @@ static int emi62_probe(struct usb_interface *intf, const struct usb_device_id *i
struct usb_device *dev = interface_to_usbdev(intf); struct usb_device *dev = interface_to_usbdev(intf);
dev_dbg(&intf->dev, "emi62_probe\n"); dev_dbg(&intf->dev, "emi62_probe\n");
info("%s start", __func__); dev_info(&intf->dev, "%s start\n", __func__);
emi62_load_firmware(dev); emi62_load_firmware(dev);
......
...@@ -403,14 +403,15 @@ static void idmouse_disconnect(struct usb_interface *interface) ...@@ -403,14 +403,15 @@ static void idmouse_disconnect(struct usb_interface *interface)
mutex_unlock(&dev->lock); mutex_unlock(&dev->lock);
} }
info("%s disconnected", DRIVER_DESC); dev_info(&interface->dev, "disconnected\n");
} }
static int __init usb_idmouse_init(void) static int __init usb_idmouse_init(void)
{ {
int result; int result;
info(DRIVER_DESC " " DRIVER_VERSION); printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":"
DRIVER_DESC "\n");
/* register this driver with the USB subsystem */ /* register this driver with the USB subsystem */
result = usb_register(&idmouse_driver); result = usb_register(&idmouse_driver);
......
...@@ -851,9 +851,8 @@ static int tower_probe (struct usb_interface *interface, const struct usb_device ...@@ -851,9 +851,8 @@ static int tower_probe (struct usb_interface *interface, const struct usb_device
dbg(2, "%s: enter", __func__); dbg(2, "%s: enter", __func__);
if (udev == NULL) { if (udev == NULL)
info ("udev is NULL."); dev_info(&interface->dev, "udev is NULL.\n");
}
/* allocate memory for our device state and initialize it */ /* allocate memory for our device state and initialize it */
...@@ -954,7 +953,9 @@ static int tower_probe (struct usb_interface *interface, const struct usb_device ...@@ -954,7 +953,9 @@ static int tower_probe (struct usb_interface *interface, const struct usb_device
dev->minor = interface->minor; dev->minor = interface->minor;
/* let the user know what node this device is now attached to */ /* let the user know what node this device is now attached to */
info ("LEGO USB Tower #%d now attached to major %d minor %d", (dev->minor - LEGO_USB_TOWER_MINOR_BASE), USB_MAJOR, dev->minor); dev_info(&interface->dev, "LEGO USB Tower #%d now attached to major "
"%d minor %d\n", (dev->minor - LEGO_USB_TOWER_MINOR_BASE),
USB_MAJOR, dev->minor);
/* get the firmware version and log it */ /* get the firmware version and log it */
result = usb_control_msg (udev, result = usb_control_msg (udev,
...@@ -971,10 +972,10 @@ static int tower_probe (struct usb_interface *interface, const struct usb_device ...@@ -971,10 +972,10 @@ static int tower_probe (struct usb_interface *interface, const struct usb_device
retval = result; retval = result;
goto error; goto error;
} }
info("LEGO USB Tower firmware version is %d.%d build %d", dev_info(&interface->dev, "LEGO USB Tower firmware version is %d.%d "
get_version_reply.major, "build %d\n", get_version_reply.major,
get_version_reply.minor, get_version_reply.minor,
le16_to_cpu(get_version_reply.build_no)); le16_to_cpu(get_version_reply.build_no));
exit: exit:
...@@ -1021,7 +1022,8 @@ static void tower_disconnect (struct usb_interface *interface) ...@@ -1021,7 +1022,8 @@ static void tower_disconnect (struct usb_interface *interface)
mutex_unlock(&dev->lock); mutex_unlock(&dev->lock);
} }
info("LEGO USB Tower #%d now disconnected", (minor - LEGO_USB_TOWER_MINOR_BASE)); dev_info(&interface->dev, "LEGO USB Tower #%d now disconnected\n",
(minor - LEGO_USB_TOWER_MINOR_BASE));
dbg(2, "%s: leave", __func__); dbg(2, "%s: leave", __func__);
} }
...@@ -1046,7 +1048,8 @@ static int __init lego_usb_tower_init(void) ...@@ -1046,7 +1048,8 @@ static int __init lego_usb_tower_init(void)
goto exit; goto exit;
} }
info(DRIVER_DESC " " DRIVER_VERSION); printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":"
DRIVER_DESC "\n");
exit: exit:
dbg(2, "%s: leave, return value %d", __func__, retval); dbg(2, "%s: leave, return value %d", __func__, retval);
......
...@@ -89,7 +89,7 @@ static int open_rio(struct inode *inode, struct file *file) ...@@ -89,7 +89,7 @@ static int open_rio(struct inode *inode, struct file *file)
mutex_unlock(&(rio->lock)); mutex_unlock(&(rio->lock));
info("Rio opened."); dev_info(&rio->rio_dev->dev, "Rio opened.\n");
return 0; return 0;
} }
...@@ -100,7 +100,7 @@ static int close_rio(struct inode *inode, struct file *file) ...@@ -100,7 +100,7 @@ static int close_rio(struct inode *inode, struct file *file)
rio->isopen = 0; rio->isopen = 0;
info("Rio closed."); dev_info(&rio->rio_dev->dev, "Rio closed.\n");
return 0; return 0;
} }
...@@ -451,7 +451,7 @@ static int probe_rio(struct usb_interface *intf, ...@@ -451,7 +451,7 @@ static int probe_rio(struct usb_interface *intf,
struct rio_usb_data *rio = &rio_instance; struct rio_usb_data *rio = &rio_instance;
int retval; int retval;
info("USB Rio found at address %d", dev->devnum); dev_info(&intf->dev, "USB Rio found at address %d\n", dev->devnum);
retval = usb_register_dev(intf, &usb_rio_class); retval = usb_register_dev(intf, &usb_rio_class);
if (retval) { if (retval) {
...@@ -503,7 +503,7 @@ static void disconnect_rio(struct usb_interface *intf) ...@@ -503,7 +503,7 @@ static void disconnect_rio(struct usb_interface *intf)
kfree(rio->ibuf); kfree(rio->ibuf);
kfree(rio->obuf); kfree(rio->obuf);
info("USB Rio disconnected."); dev_info(&intf->dev, "USB Rio disconnected.\n");
rio->present = 0; rio->present = 0;
mutex_unlock(&(rio->lock)); mutex_unlock(&(rio->lock));
...@@ -531,7 +531,8 @@ static int __init usb_rio_init(void) ...@@ -531,7 +531,8 @@ static int __init usb_rio_init(void)
if (retval) if (retval)
goto out; goto out;
info(DRIVER_VERSION ":" DRIVER_DESC); printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":"
DRIVER_DESC "\n");
out: out:
return retval; return retval;
......
...@@ -144,7 +144,8 @@ static int __init tv_init(void) ...@@ -144,7 +144,8 @@ static int __init tv_init(void)
return retval; return retval;
} }
info(DRIVER_VERSION ":" DRIVER_DESC); printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":"
DRIVER_DESC "\n");
return 0; return 0;
} }
......
...@@ -359,12 +359,13 @@ static int lcd_probe(struct usb_interface *interface, const struct usb_device_id ...@@ -359,12 +359,13 @@ static int lcd_probe(struct usb_interface *interface, const struct usb_device_id
i = le16_to_cpu(dev->udev->descriptor.bcdDevice); i = le16_to_cpu(dev->udev->descriptor.bcdDevice);
info("USBLCD Version %1d%1d.%1d%1d found at address %d", dev_info(&interface->dev, "USBLCD Version %1d%1d.%1d%1d found "
(i & 0xF000)>>12,(i & 0xF00)>>8,(i & 0xF0)>>4,(i & 0xF), "at address %d\n", (i & 0xF000)>>12, (i & 0xF00)>>8,
dev->udev->devnum); (i & 0xF0)>>4,(i & 0xF), dev->udev->devnum);
/* let the user know what node this device is now attached to */ /* let the user know what node this device is now attached to */
info("USB LCD device now attached to USBLCD-%d", interface->minor); dev_info(&interface->dev, "USB LCD device now attached to USBLCD-%d\n",
interface->minor);
return 0; return 0;
error: error:
...@@ -413,7 +414,7 @@ static void lcd_disconnect(struct usb_interface *interface) ...@@ -413,7 +414,7 @@ static void lcd_disconnect(struct usb_interface *interface)
/* decrement our usage count */ /* decrement our usage count */
kref_put(&dev->kref, lcd_delete); kref_put(&dev->kref, lcd_delete);
info("USB LCD #%d now disconnected", minor); dev_info(&interface->dev, "USB LCD #%d now disconnected\n", minor);
} }
static struct usb_driver lcd_driver = { static struct usb_driver lcd_driver = {
......
...@@ -801,10 +801,14 @@ static int __init uss720_init(void) ...@@ -801,10 +801,14 @@ static int __init uss720_init(void)
if (retval) if (retval)
goto out; goto out;
info(DRIVER_VERSION ":" DRIVER_DESC); printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":"
info("NOTE: this is a special purpose driver to allow nonstandard"); DRIVER_DESC "\n");
info("protocols (eg. bitbang) over USS720 usb to parallel cables"); printk(KERN_INFO KBUILD_MODNAME ": NOTE: this is a special purpose "
info("If you just want to connect to a printer, use usblp instead"); "driver to allow nonstandard\n");
printk(KERN_INFO KBUILD_MODNAME ": protocols (eg. bitbang) over "
"USS720 usb to parallel cables\n");
printk(KERN_INFO KBUILD_MODNAME ": If you just want to connect to a "
"printer, use usblp instead\n");
out: out:
return retval; return retval;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册