Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Staging: comedi: fix extra whitespace style issues in ni_mio_common.c.

This patch for ni_mio_common.c removes extra whitespace causing
checkpatch.pl warnings.

Signed-off-by: Chase Southwood <chase.southwood@yahoo.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Chase Southwood and committed by
Greg Kroah-Hartman
69ba8358 b9ede315

+3 -3
+3 -3
drivers/staging/comedi/drivers/ni_mio_common.c
··· 992 992 ack |= AI_START_Interrupt_Ack; 993 993 if (a_status & AI_STOP_St) 994 994 /* not sure why we used to ack the START here also, instead of doing it independently. Frank Hess 2007-07-06 */ 995 - ack |= AI_STOP_Interrupt_Ack /*| AI_START_Interrupt_Ack */ ; 995 + ack |= AI_STOP_Interrupt_Ack /*| AI_START_Interrupt_Ack */; 996 996 if (ack) 997 997 devpriv->stc_writew(dev, ack, Interrupt_A_Ack_Register); 998 998 } ··· 4262 4262 s->n_chan = board->num_p0_dio_channels; 4263 4263 if (board->reg_type & ni_reg_m_series_mask) { 4264 4264 s->subdev_flags |= 4265 - SDF_LSAMPL | SDF_CMD_WRITE /* | SDF_CMD_READ */ ; 4265 + SDF_LSAMPL | SDF_CMD_WRITE /* | SDF_CMD_READ */; 4266 4266 s->insn_bits = &ni_m_series_dio_insn_bits; 4267 4267 s->insn_config = &ni_m_series_dio_insn_config; 4268 4268 s->do_cmd = &ni_cdio_cmd; ··· 4731 4731 struct caldac_struct { 4732 4732 int n_chans; 4733 4733 int n_bits; 4734 - int (*packbits) (int, int, int *); 4734 + int (*packbits)(int, int, int *); 4735 4735 }; 4736 4736 4737 4737 static struct caldac_struct caldacs[] = {