Commit 0389245f authored by Ravishankar karkala Mallikarjunayya's avatar Ravishankar karkala Mallikarjunayya Committed by Greg Kroah-Hartman
Browse files

Staging: comedi: fix brace coding style issue in pcmuio.c



This is a patch to the pcmuio.c file that fixes up a brace
warning found by the checkpatch.pl tool.

Signed-off-by: default avatarRavishankar Karkala Mallikarjunayya <ravishankar.km@greenturtles.in>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 34dac67d
Loading
Loading
Loading
Loading
+4 −6
Original line number Diff line number Diff line
@@ -951,14 +951,13 @@ pcmuio_inttrig_start_intr(struct comedi_device *dev, struct comedi_subdevice *s,

	spin_lock_irqsave(&subpriv->intr.spinlock, flags);
	s->async->inttrig = 0;
	if (subpriv->intr.active) {
	if (subpriv->intr.active)
		event = pcmuio_start_intr(dev, s);
	}

	spin_unlock_irqrestore(&subpriv->intr.spinlock, flags);

	if (event) {
	if (event)
		comedi_event(dev, s);
	}

	return 1;
}
@@ -1000,9 +999,8 @@ static int pcmuio_cmd(struct comedi_device *dev, struct comedi_subdevice *s)
	}
	spin_unlock_irqrestore(&subpriv->intr.spinlock, flags);

	if (event) {
	if (event)
		comedi_event(dev, s);
	}

	return 0;
}