Commit f14b6226 authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman

staging: comedi: pcl724: checkpatch.pl cleanup (foo*/foo *)

Fix the checkpatch.pl error:

ERROR: "(foo*)" should be "(foo *)"
Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 205781b7
...@@ -310,7 +310,7 @@ static int pcl730_attach(struct comedi_device *dev, ...@@ -310,7 +310,7 @@ static int pcl730_attach(struct comedi_device *dev,
s->maxdata = 1; s->maxdata = 1;
s->range_table = &range_digital; s->range_table = &range_digital;
s->insn_bits = pcl730_di_insn_bits; s->insn_bits = pcl730_di_insn_bits;
s->private = board->is_ir104 ? (void*)4 : s->private = board->is_ir104 ? (void *)4 :
board->is_acl7225b ? (void *)2 : board->is_acl7225b ? (void *)2 :
board->is_pcl725 ? (void *)1 : (void *)0; board->is_pcl725 ? (void *)1 : (void *)0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment