Commit b2f48741 authored by Yves Deweerdt's avatar Yves Deweerdt Committed by Greg Kroah-Hartman
Browse files

staging: comedi: comedy_fops.c: fix line over 80, characters warnings

parent f619621f
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -1435,13 +1435,15 @@ static int __comedi_get_user_cmd(struct comedi_device *dev,
	s = &dev->subdevices[cmd->subdev];

	if (s->type == COMEDI_SUBD_UNUSED) {
		dev_dbg(dev->class_dev, "%d not valid subdevice\n", cmd->subdev);
		dev_dbg(dev->class_dev, "%d not valid subdevice\n",
			cmd->subdev);
		return -EIO;
	}

	if (!s->do_cmd || !s->do_cmdtest || !s->async) {
		dev_dbg(dev->class_dev,
			"subdevice %d does not support commands\n", cmd->subdev);
			"subdevice %d does not support commands\n",
			cmd->subdev);
		return -EIO;
	}