Commit 617c8264 authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman

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: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Reviewed-by: default avatarIan Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 50a9cd58
...@@ -106,10 +106,10 @@ struct atao_board { ...@@ -106,10 +106,10 @@ struct atao_board {
static const struct atao_board atao_boards[] = { static const struct atao_board atao_boards[] = {
{ {
.name = "ai-ao-6", .name = "at-ao-6",
.n_ao_chans = 6, .n_ao_chans = 6,
}, { }, {
.name = "ai-ao-10", .name = "at-ao-10",
.n_ao_chans = 10, .n_ao_chans = 10,
}, },
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment