Commit f0dff421 authored by Haneen Mohammed's avatar Haneen Mohammed Committed by Greg Kroah-Hartman

Staging: comedi: Remove parentheses around right side assignment

Parentheses are not needed around the right hand side of an assignment.
This patch remove parenthese of such occurences. Issue was detected and
solved using the following coccinelle script:

@rule1@
identifier x, y, z;
expression E1, E2;
@@

(
x = (y == z);
|
x = (E1 == E2);
|
 x =
-(
...
-)
 ;
)
Signed-off-by: default avatarHaneen Mohammed <hamohammed.sa@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 81906c35
...@@ -270,7 +270,7 @@ static irqreturn_t apci3501_interrupt(int irq, void *d) ...@@ -270,7 +270,7 @@ static irqreturn_t apci3501_interrupt(int irq, void *d)
/* Disable Interrupt */ /* Disable Interrupt */
ul_Command1 = inl(dev->iobase + APCI3501_TIMER_CTRL_REG); ul_Command1 = inl(dev->iobase + APCI3501_TIMER_CTRL_REG);
ul_Command1 = (ul_Command1 & 0xFFFFF9FDul); ul_Command1 = ul_Command1 & 0xFFFFF9FDul;
outl(ul_Command1, dev->iobase + APCI3501_TIMER_CTRL_REG); outl(ul_Command1, dev->iobase + APCI3501_TIMER_CTRL_REG);
ui_Timer_AOWatchdog = inl(dev->iobase + APCI3501_TIMER_IRQ_REG) & 0x1; ui_Timer_AOWatchdog = inl(dev->iobase + APCI3501_TIMER_IRQ_REG) & 0x1;
...@@ -282,7 +282,7 @@ static irqreturn_t apci3501_interrupt(int irq, void *d) ...@@ -282,7 +282,7 @@ static irqreturn_t apci3501_interrupt(int irq, void *d)
/* Enable Interrupt Send a signal to from kernel to user space */ /* Enable Interrupt Send a signal to from kernel to user space */
send_sig(SIGIO, devpriv->tsk_Current, 0); send_sig(SIGIO, devpriv->tsk_Current, 0);
ul_Command1 = inl(dev->iobase + APCI3501_TIMER_CTRL_REG); ul_Command1 = inl(dev->iobase + APCI3501_TIMER_CTRL_REG);
ul_Command1 = ((ul_Command1 & 0xFFFFF9FDul) | 1 << 1); ul_Command1 = (ul_Command1 & 0xFFFFF9FDul) | 1 << 1;
outl(ul_Command1, dev->iobase + APCI3501_TIMER_CTRL_REG); outl(ul_Command1, dev->iobase + APCI3501_TIMER_CTRL_REG);
inl(dev->iobase + APCI3501_TIMER_STATUS_REG); inl(dev->iobase + APCI3501_TIMER_STATUS_REG);
......
...@@ -1360,7 +1360,7 @@ static void get_last_sample_611x(struct comedi_device *dev) ...@@ -1360,7 +1360,7 @@ static void get_last_sample_611x(struct comedi_device *dev)
/* Check if there's a single sample stuck in the FIFO */ /* Check if there's a single sample stuck in the FIFO */
if (ni_readb(dev, XXX_Status) & 0x80) { if (ni_readb(dev, XXX_Status) & 0x80) {
dl = ni_readl(dev, ADC_FIFO_Data_611x); dl = ni_readl(dev, ADC_FIFO_Data_611x);
data = (dl & 0xffff); data = dl & 0xffff;
comedi_buf_write_samples(s, &data, 1); comedi_buf_write_samples(s, &data, 1);
} }
} }
...@@ -1871,7 +1871,7 @@ static void ni_m_series_load_channelgain_list(struct comedi_device *dev, ...@@ -1871,7 +1871,7 @@ static void ni_m_series_load_channelgain_list(struct comedi_device *dev,
chan = CR_CHAN(list[0]); chan = CR_CHAN(list[0]);
range = CR_RANGE(list[0]); range = CR_RANGE(list[0]);
range_code = ni_gainlkup[board->gainlkup][range]; range_code = ni_gainlkup[board->gainlkup][range];
dither = ((list[0] & CR_ALT_FILTER) != 0); dither = (list[0] & CR_ALT_FILTER) != 0;
bypass_bits = MSeries_AI_Bypass_Config_FIFO_Bit; bypass_bits = MSeries_AI_Bypass_Config_FIFO_Bit;
bypass_bits |= chan; bypass_bits |= chan;
bypass_bits |= bypass_bits |=
...@@ -1895,7 +1895,7 @@ static void ni_m_series_load_channelgain_list(struct comedi_device *dev, ...@@ -1895,7 +1895,7 @@ static void ni_m_series_load_channelgain_list(struct comedi_device *dev,
chan = CR_CHAN(list[i]); chan = CR_CHAN(list[i]);
aref = CR_AREF(list[i]); aref = CR_AREF(list[i]);
range = CR_RANGE(list[i]); range = CR_RANGE(list[i]);
dither = ((list[i] & CR_ALT_FILTER) != 0); dither = (list[i] & CR_ALT_FILTER) != 0;
range_code = ni_gainlkup[board->gainlkup][range]; range_code = ni_gainlkup[board->gainlkup][range];
devpriv->ai_offset[i] = 0; devpriv->ai_offset[i] = 0;
...@@ -2021,7 +2021,7 @@ static void ni_load_channelgain_list(struct comedi_device *dev, ...@@ -2021,7 +2021,7 @@ static void ni_load_channelgain_list(struct comedi_device *dev,
chan = CR_CHAN(list[i]); chan = CR_CHAN(list[i]);
aref = CR_AREF(list[i]); aref = CR_AREF(list[i]);
range = CR_RANGE(list[i]); range = CR_RANGE(list[i]);
dither = ((list[i] & CR_ALT_FILTER) != 0); dither = (list[i] & CR_ALT_FILTER) != 0;
/* fix the external/internal range differences */ /* fix the external/internal range differences */
range = ni_gainlkup[board->gainlkup][range]; range = ni_gainlkup[board->gainlkup][range];
......
...@@ -143,8 +143,8 @@ static void serial2002_tty_read_poll_wait(struct file *f, int timeout) ...@@ -143,8 +143,8 @@ static void serial2002_tty_read_poll_wait(struct file *f, int timeout)
break; break;
} }
do_gettimeofday(&now); do_gettimeofday(&now);
elapsed = (1000000 * (now.tv_sec - start.tv_sec) + elapsed = 1000000 * (now.tv_sec - start.tv_sec) +
now.tv_usec - start.tv_usec); now.tv_usec - start.tv_usec;
if (elapsed > timeout) if (elapsed > timeout)
break; break;
set_current_state(TASK_INTERRUPTIBLE); set_current_state(TASK_INTERRUPTIBLE);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment