This is a patch to the ni_at_a2150.c file that fixes up a brace
warning found by the checkpatch.pl tool.
Signed-off-by: Ravishankar Karkala Mallikarjunayya <ravishankar.km@greenturtles.in>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
        outw(trigger_bits, dev->iobase + TRIGGER_REG);
 
        /*  start acquisition for soft trigger */
-       if (cmd->start_src == TRIG_NOW) {
+       if (cmd->start_src == TRIG_NOW)
                outw(0, dev->iobase + FIFO_START_REG);
-       }
 #ifdef A2150_DEBUG
        ni_dump_regs(dev);
 #endif
        case TRIG_ROUND_NEAREST:
        default:
                /*  if least upper bound is better approximation */
-               if (lub - *period < *period - glb) {
+               if (lub - *period < *period - glb)
                        *period = lub;
-               } else {
+               else
                        *period = glb;
-               }
                break;
        case TRIG_ROUND_UP:
                *period = lub;