From: Ian Abbott Date: Wed, 4 Jan 2017 10:55:46 +0000 (+0000) Subject: staging: comedi: daqboard2000: change COMEDI device names X-Git-Tag: v5.15~11841^2~398 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=41ab27de8fe79e201223a63beed1c4c9f572175b;p=platform%2Fkernel%2Flinux-starfive.git 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 Reviewed-by: H Hartley Sweeten Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/comedi/drivers/daqboard2000.c b/drivers/staging/comedi/drivers/daqboard2000.c index 8f0325e..5460d13 100644 --- a/drivers/staging/comedi/drivers/daqboard2000.c +++ b/drivers/staging/comedi/drivers/daqboard2000.c @@ -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, }, };