summaryrefslogtreecommitdiff
path: root/drivers/staging/comedi
diff options
context:
space:
mode:
authorNicolas Kaiser <nikai@nikai.net>2010-11-13 18:43:27 (GMT)
committerGreg Kroah-Hartman <gregkh@suse.de>2010-11-16 19:44:16 (GMT)
commitf96c377ead5ed308f0cf18b9156f86fdf207a288 (patch)
treebebac52c47b76e4b42d718ba6e6061a1e1a05dfb /drivers/staging/comedi
parente08e02faff68d33c938fd0322c0f8318a25ddb39 (diff)
downloadlinux-fsl-qoriq-f96c377ead5ed308f0cf18b9156f86fdf207a288.tar.xz
staging: comedi: fix typo in error message
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>
Diffstat (limited to 'drivers/staging/comedi')
-rw-r--r--drivers/staging/comedi/drivers/usbdux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/comedi/drivers/usbdux.c b/drivers/staging/comedi/drivers/usbdux.c
index 1f177a6..aca4d14 100644
--- a/drivers/staging/comedi/drivers/usbdux.c
+++ b/drivers/staging/comedi/drivers/usbdux.c
@@ -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;