staging: comedi: daqboard2000: change COMEDI device names

The COMEDI device name strings are currently set to "ids2" for the
DaqBoard/2000, and to "ids4" for the DaqBoard/2001.  Change them to
"daqboard2000" and "daqboard2001" respectively.  (The COMEDI driver name
string is also "daqboard2000".)

Signed-off-by: Ian Abbott <abbotti@mev.co.uk>
Reviewed-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Ian Abbott 2017-01-04 10:55:46 +00:00 committed by Greg Kroah-Hartman
parent ca685dc914
commit 41ab27de8f
1 changed files with 2 additions and 2 deletions

View File

@ -253,12 +253,12 @@ struct db2k_boardtype {
static const struct db2k_boardtype db2k_boardtypes[] = {
{
.name = "ids2",
.name = "daqboard2000",
.id = DB2K_SUBSYSTEM_IDS2,
.has_2_ao = true,
},
{
.name = "ids4",
.name = "daqboard2001",
.id = DB2K_SUBSYSTEM_IDS4,
},
};