From 6d28bea92c27c383dd224ca6327d84d0dde2e770 Mon Sep 17 00:00:00 2001 From: H Hartley Sweeten Date: Mon, 3 Jun 2013 18:04:33 -0700 Subject: [PATCH] staging: comedi: pcmuio: fix the last > 80 char line warning Fix the last checkpatch.pl warning in this file. Signed-off-by: H Hartley Sweeten Reviewed-by: Ian Abbott Signed-off-by: Greg Kroah-Hartman --- drivers/staging/comedi/drivers/pcmuio.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/staging/comedi/drivers/pcmuio.c b/drivers/staging/comedi/drivers/pcmuio.c index d73b491d3a3f..9a560a36f1f5 100644 --- a/drivers/staging/comedi/drivers/pcmuio.c +++ b/drivers/staging/comedi/drivers/pcmuio.c @@ -831,7 +831,8 @@ static int pcmuio_attach(struct comedi_device *dev, struct comedi_devconfig *it) /* save the ioport address for each 'port' of 8 channels in the subdevice */ - for (byte_no = 0; byte_no < PORTS_PER_SUBDEV; ++byte_no, ++port) { + for (byte_no = 0; byte_no < PORTS_PER_SUBDEV; + ++byte_no, ++port) { if (port >= PORTS_PER_ASIC) { port = 0; ++asic; -- 2.34.1