Commit 091b4242 authored by Samuel Richardson's avatar Samuel Richardson Committed by Greg Kroah-Hartman
Browse files

Staging: comedi: fixed brace coding style issue in ni_tio.c



This is a patch to the ni_tio.c file that fixes a brace warning found by
the checkpatch.pl tool

Signed-off-by: default avatarSamuel Richardson <sam.j.richardson@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 7e27d6e7
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -1688,12 +1688,11 @@ static unsigned ni_tio_next_load_register(struct ni_gpct *counter)
					    NITIO_Gxx_Status_Reg(counter->
								 counter_index));

	if (bits & Gi_Next_Load_Source_Bit(counter->counter_index)) {
	if (bits & Gi_Next_Load_Source_Bit(counter->counter_index))
		return NITIO_Gi_LoadB_Reg(counter->counter_index);
	} else {
	else
		return NITIO_Gi_LoadA_Reg(counter->counter_index);
}
}

int ni_tio_winsn(struct ni_gpct *counter, struct comedi_insn *insn,
		 unsigned int *data)