Commit 5fa2fa44 authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman
Browse files

staging: comedi: ni_stc.h: tidy up G_Command_Register



Rename the CamelCase and define the G0 and G1 registers to add clarity
to the mio_regmap tables.

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 382b3c4f
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -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 },
+3 −1
Original line number Diff line number Diff line
@@ -126,6 +126,9 @@
#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)