Commit 41ab27de authored by Ian Abbott's avatar Ian Abbott Committed by Greg Kroah-Hartman
Browse files

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: default avatarIan Abbott <abbotti@mev.co.uk>
Reviewed-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent ca685dc9
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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,
	},
};