Hello Mark, On Mon, May 10, 2010 at 05:36:57PM +0800, Mark wrote: > This patch fixes lots of long line lengths in comedi_fops.c found by > checkpatch.pl > > Signed-off-by: Mark Rankilor <reodge@xxxxxxxxx> > --- > drivers/staging/comedi/comedi_fops.c | 38 ++++++++++++++++++++++----------- > 1 files changed, 25 insertions(+), 13 deletions(-) > > diff --git a/drivers/staging/comedi/comedi_fops.c b/drivers/staging/comedi/comedi_fops.c > index e7095d7..9bfab73 100644 > --- a/drivers/staging/comedi/comedi_fops.c > +++ b/drivers/staging/comedi/comedi_fops.c > @@ -962,7 +962,8 @@ static int do_insn_ioctl(struct comedi_device *dev, > if (ret < 0) > goto error; > if (insn.insn & INSN_MASK_READ) { > - if (copy_to_user(insn.data, data, insn.n * sizeof(unsigned int))) { > + if (copy_to_user > + (insn.data, data, insn.n * sizeof(unsigned int))) { I think it'd be better to keep the opening parenthesis on the same line of the function and maybe the first argument, too. > > _______________________________________________ > devel mailing list > devel@xxxxxxxxxxxxxxxxxxxxxx > http://driverdev.linuxdriverproject.org/mailman/listinfo/devel -- Charles Clément _______________________________________________ devel mailing list devel@xxxxxxxxxxxxxxxxxxxxxx http://driverdev.linuxdriverproject.org/mailman/listinfo/devel