Skip to content

Commit

Permalink
staging: comedi: ni_atmio: fix build error due to missing '; '
Browse files Browse the repository at this point in the history
Fix a build error due to a missing ';' at the end of a line.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Reported-by: Geert Uytterhoeven <geert.uytterhoeven@gmail.com>
Cc: Kumar Amit Mehta <gmate.amit@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
H Hartley Sweeten authored and Greg Kroah-Hartman committed Mar 15, 2013
1 parent 673f98c commit 615c902
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/staging/comedi/drivers/ni_atmio.c
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ static int ni_atmio_attach(struct comedi_device *dev,
return -EIO;

dev->board_ptr = ni_boards + board;
boardtype = comedi_board(dev)
boardtype = comedi_board(dev);

printk(" %s", boardtype->name);
dev->board_name = boardtype->name;
Expand Down

0 comments on commit 615c902

Please sign in to comment.