staging: comedi: ni_stc.h: tidy up G_Command_Register
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Fri, 1 May 2015 21:58:58 +0000 (14:58 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 9 May 2015 17:05:08 +0000 (19:05 +0200)
Rename the CamelCase and define the G0 and G1 registers to add clarity
to the mio_regmap tables.

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>
drivers/staging/comedi/drivers/ni_mio_common.c
drivers/staging/comedi/drivers/ni_stc.h

index 45d16d7..0ac17c8 100644 (file)
@@ -318,8 +318,8 @@ static const struct mio_regmap m_series_stc_write_regmap[] = {
        [NISTC_INTB_ACK_REG]            = { 0x106, 2 },
        [NISTC_AI_CMD2_REG]             = { 0x108, 2 },
        [NISTC_AO_CMD2_REG]             = { 0x10a, 2 },
-       [G_Command_Register(0)]         = { 0x10c, 2 },
-       [G_Command_Register(1)]         = { 0x10e, 2 },
+       [NISTC_G0_CMD_REG]              = { 0x10c, 2 },
+       [NISTC_G1_CMD_REG]              = { 0x10e, 2 },
        [AI_Command_1_Register]         = { 0x110, 2 },
        [AO_Command_1_Register]         = { 0x112, 2 },
        /*
@@ -3720,8 +3720,8 @@ static void init_ao_67xx(struct comedi_device *dev, struct comedi_subdevice *s)
 static const struct mio_regmap ni_gpct_to_stc_regmap[] = {
        [NITIO_G0_AUTO_INC]     = { G_Autoincrement_Register(0), 2 },
        [NITIO_G1_AUTO_INC]     = { G_Autoincrement_Register(1), 2 },
-       [NITIO_G0_CMD]          = { G_Command_Register(0), 2 },
-       [NITIO_G1_CMD]          = { G_Command_Register(1), 2 },
+       [NITIO_G0_CMD]          = { NISTC_G0_CMD_REG, 2 },
+       [NITIO_G1_CMD]          = { NISTC_G1_CMD_REG, 2 },
        [NITIO_G0_HW_SAVE]      = { G_HW_Save_Register(0), 4 },
        [NITIO_G1_HW_SAVE]      = { G_HW_Save_Register(1), 4 },
        [NITIO_G0_SW_SAVE]      = { G_Save_Register(0), 4 },
index 2a54864..7f88dd4 100644 (file)
 #define NISTC_AO_CMD2_UPDATE2_PULSE    BIT(1)
 #define NISTC_AO_CMD2_START1_PULSE     BIT(0)
 
+#define NISTC_G0_CMD_REG               6
+#define NISTC_G1_CMD_REG               7
+
 #define AI_Status_1_Register           2
 #define Interrupt_A_St                         0x8000
 #define AI_FIFO_Full_St                                0x4000
@@ -599,7 +602,6 @@ static unsigned AO_UPDATE_Output_Select(enum ao_update_output_selection
 #define AI_External_Gate_Select(a)             ((a) & 0x1f)
 
 #define G_Autoincrement_Register(a)    (68+(a))
-#define G_Command_Register(a)          (6+(a))
 #define G_HW_Save_Register(a)          (8+(a)*2)
 #define G_HW_Save_Register_High(a)     (8+(a)*2)
 #define G_HW_Save_Register_Low(a)      (9+(a)*2)