Skip to content

Commit

Permalink
staging: comedi: drivers: addi-data: hwdrv_apci3200.c: Add a missing …
Browse files Browse the repository at this point in the history
…semicolon

fix for missing end-of-statement by adding a semicolon

Signed-off-by: Kumar Amit Mehta <gmate.amit@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Kumar Amit Mehta authored and Greg Kroah-Hartman committed Feb 18, 2013
1 parent deb95fa commit 6b07b30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/staging/comedi/drivers/addi-data/hwdrv_apci3200.c
Original file line number Diff line number Diff line change
Expand Up @@ -633,7 +633,7 @@ static int apci3200_do_insn_bits(struct comedi_device *dev,
s->state = inl(devpriv->i_IobaseAddon) & 0xf;
if (mask) {
s->state &= ~mask;
s->state |= (bits & mask)
s->state |= (bits & mask);

outl(s->state, devpriv->i_IobaseAddon);
}
Expand Down

0 comments on commit 6b07b30

Please sign in to comment.