staging: comedi: fix checkpatch error

Fixed an error found by checkpatch.pl.
ERROR: space required after that ',' (ctx:VxV)
./drivers/ni_mio_common.c:3764

Signed-off-by: Geliang Tang <geliangtang@163.com>
Reviewed-by: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Geliang Tang 2015-05-25 14:20:43 +00:00 committed by Greg Kroah-Hartman
parent 3a62cdb7f6
commit cdfba23d77

View File

@ -3761,7 +3761,7 @@ static unsigned int ni_gpct_to_stc_register(struct comedi_device *dev,
if (reg < ARRAY_SIZE(ni_gpct_to_stc_regmap)) {
regmap = &ni_gpct_to_stc_regmap[reg];
} else {
dev_warn(dev->class_dev,"%s: unhandled register 0x%x\n",
dev_warn(dev->class_dev, "%s: unhandled register 0x%x\n",
__func__, reg);
return 0;
}