Browse Source

USB: misc: idmouse: correct spelling mistake in error string

Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Rahul Bedarkar 11 years ago
parent
commit
45868b3a98
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/usb/misc/idmouse.c

+ 1 - 1
drivers/usb/misc/idmouse.c

@@ -386,7 +386,7 @@ static int idmouse_probe(struct usb_interface *interface,
 	result = usb_register_dev(interface, &idmouse_class);
 	if (result) {
 		/* something prevented us from registering this device */
-		dev_err(&interface->dev, "Unble to allocate minor number.\n");
+		dev_err(&interface->dev, "Unable to allocate minor number.\n");
 		usb_set_intfdata(interface, NULL);
 		idmouse_delete(dev);
 		return result;