staging: comedi: fix typo in error message
authorNicolas Kaiser <nikai@nikai.net>
Sat, 13 Nov 2010 18:43:27 +0000 (19:43 +0100)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 16 Nov 2010 19:44:16 +0000 (11:44 -0800)
Fix typo in error message of dux commands allocation.

Signed-off-by: Nicolas Kaiser <nikai@nikai.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/comedi/drivers/usbdux.c

index 1f177a6..aca4d14 100644 (file)
@@ -2398,7 +2398,7 @@ static int usbduxsub_probe(struct usb_interface *uinterf,
        usbduxsub[index].dux_commands = kzalloc(SIZEOFDUXBUFFER, GFP_KERNEL);
        if (!usbduxsub[index].dux_commands) {
                dev_err(dev, "comedi_: usbdux: "
-                       "error alloc space for dac commands\n");
+                       "error alloc space for dux commands\n");
                tidy_up(&(usbduxsub[index]));
                up(&start_stop_sem);
                return -ENOMEM;