diff options
author | Rahul Bedarkar <rahulbedarkar89@gmail.com> | 2014-01-02 13:55:50 (GMT) |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-01-03 20:39:31 (GMT) |
commit | 45868b3a98605172ebe6367f602dca347e1d2904 (patch) | |
tree | 32753398b9d68ab55689a0d3b4a4f4427609930d /drivers | |
parent | 3fb4c07a52d7d0bf7d880538c11629e69fc8be2e (diff) | |
download | linux-45868b3a98605172ebe6367f602dca347e1d2904.tar.xz |
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>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/usb/misc/idmouse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/misc/idmouse.c b/drivers/usb/misc/idmouse.c index ce97838..49235bd 100644 --- a/drivers/usb/misc/idmouse.c +++ b/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; |