staging: comedi: ni_tio: checkpatch.pl cleanup (else is not useful)
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Wed, 16 Jul 2014 17:43:38 +0000 (10:43 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 16 Jul 2014 20:34:23 +0000 (13:34 -0700)
Fix the checkpatch.pl warnings:

WARNING: else is not generally useful after a break or return

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/comedi/drivers/ni_tio.c

index a25e2f5d83ab4b0c56db1d5b06ca6cbd925fa161..1a5bb2353de39db013d0108bfb3511501a6dac46 100644 (file)
@@ -165,20 +165,16 @@ static const unsigned ni_m_series_max_pfi_channel = 15;
 static inline unsigned NI_M_Series_PFI_Clock(unsigned n)
 {
        BUG_ON(n > ni_m_series_max_pfi_channel);
-       if (n < 10)
-               return 1 + n;
-       else
-               return 0xb + n;
+
+       return (n < 10) ? (1 + n) : (0xb + n);
 }
 
 static const unsigned ni_m_series_max_rtsi_channel = 7;
 static inline unsigned NI_M_Series_RTSI_Clock(unsigned n)
 {
        BUG_ON(n > ni_m_series_max_rtsi_channel);
-       if (n == 7)
-               return 0x1b;
-       else
-               return 0xb + n;
+
+       return (n == 7) ? 0x1b : (0xb + n);
 }
 
 enum ni_660x_gate_select {
@@ -1408,12 +1404,12 @@ static int ni_tio_get_gate_src(struct ni_gpct *counter, unsigned gate_index,
                    Gi_Gating_Disabled_Bits) {
                        *gate_source = NI_GPCT_DISABLED_GATE_SELECT;
                        return 0;
-               } else {
-                       gate_select_bits =
-                           (ni_tio_get_soft_copy(counter,
-                                                 NITIO_INPUT_SEL_REG(cidx)) &
-                            Gi_Gate_Select_Mask) >> Gi_Gate_Select_Shift;
                }
+
+               gate_select_bits =
+                   (ni_tio_get_soft_copy(counter, NITIO_INPUT_SEL_REG(cidx)) &
+                       Gi_Gate_Select_Mask) >> Gi_Gate_Select_Shift;
+
                switch (counter_dev->variant) {
                case ni_gpct_variant_e_series:
                case ni_gpct_variant_m_series:
@@ -1442,12 +1438,11 @@ static int ni_tio_get_gate_src(struct ni_gpct *counter, unsigned gate_index,
                    == 0) {
                        *gate_source = NI_GPCT_DISABLED_GATE_SELECT;
                        return 0;
-               } else {
-                       gate_select_bits =
-                           (counter_dev->regs[second_gate_reg] &
-                            Gi_Second_Gate_Select_Mask) >>
-                           Gi_Second_Gate_Select_Shift;
                }
+
+               gate_select_bits = (counter_dev->regs[second_gate_reg] &
+                               Gi_Second_Gate_Select_Mask) >>
+                               Gi_Second_Gate_Select_Shift;
                switch (counter_dev->variant) {
                case ni_gpct_variant_e_series:
                case ni_gpct_variant_m_series:
@@ -1570,10 +1565,9 @@ static unsigned ni_tio_next_load_register(struct ni_gpct *counter)
        const unsigned bits =
                read_register(counter, NITIO_SHARED_STATUS_REG(cidx));
 
-       if (bits & Gi_Next_Load_Source_Bit(cidx))
-               return NITIO_LOADB_REG(cidx);
-       else
-               return NITIO_LOADA_REG(cidx);
+       return (bits & Gi_Next_Load_Source_Bit(cidx))
+                       ? NITIO_LOADB_REG(cidx)
+                       : NITIO_LOADA_REG(cidx);
 }
 
 int ni_tio_insn_write(struct comedi_device *dev,
This page took 0.026241 seconds and 5 git commands to generate.