]> git.karo-electronics.de Git - linux-beck.git/commitdiff
staging: comedi: rewrite the right hand side of an assignment
authorAya Mahfouz <mahfouz.saif.elyazal@gmail.com>
Thu, 26 Feb 2015 09:46:12 +0000 (11:46 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 26 Feb 2015 23:24:16 +0000 (15:24 -0800)
This patch rewrites the right hand side of an assignment for
expressions of the form:
a = (a <op> b);
to be:
a <op>= b;
where <op> = << | >>.

This issue was detected and resolved using the following
coccinelle script:

@@
identifier i;
expression e;
@@

-i = (i >> e);
+i >>= e;

@@
identifier i;
expression e;
@@

-i = (i << e);
+i <<= e;

Signed-off-by: Aya Mahfouz <mahfouz.saif.elyazal@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/comedi/drivers/rtd520.c

index c94ad12ed446bea7250ccb4c0772076681406f4a..a7255d13775a4876fe3e8c60803e48cf189bedec 100644 (file)
@@ -579,7 +579,7 @@ static int rtd_ai_rinsn(struct comedi_device *dev,
 
                /* read data */
                d = readw(devpriv->las1 + LAS1_ADC_FIFO);
-               d = d >> 3;     /* low 3 bits are marker lines */
+               d >>= 3;        /* low 3 bits are marker lines */
 
                /* convert bipolar data to comedi unsigned data */
                if (comedi_range_is_bipolar(s, range))
@@ -616,7 +616,7 @@ static int ai_read_n(struct comedi_device *dev, struct comedi_subdevice *s,
                }
 
                d = readw(devpriv->las1 + LAS1_ADC_FIFO);
-               d = d >> 3;     /* low 3 bits are marker lines */
+               d >>= 3;        /* low 3 bits are marker lines */
 
                /* convert bipolar data to comedi unsigned data */
                if (comedi_range_is_bipolar(s, range))