staging: comedi: ni_at_ao: fix board names

This driver works with "at-ao-6/10" boards not "ai-ao-6/10" boards.
Fix the names in the boardinfo.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Reviewed-by: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
H Hartley Sweeten 2013-09-30 17:55:33 -07:00 committed by Greg Kroah-Hartman
commit 617c8264de

View file

@ -106,10 +106,10 @@ struct atao_board {
static const struct atao_board atao_boards[] = {
{
.name = "ai-ao-6",
.name = "at-ao-6",
.n_ao_chans = 6,
}, {
.name = "ai-ao-10",
.name = "at-ao-10",
.n_ao_chans = 10,
},
};