OSDN Git Service

Staging: comedi: ni_mio_common.c: fixed brace coding style issue in two places
authorSurya Seetharaman <surya.seetharaman9@gmail.com>
Fri, 24 Oct 2014 20:12:09 +0000 (01:42 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 27 Oct 2014 02:33:06 +0000 (10:33 +0800)
Removed unnecessary braces with the help of  checkpatch.pl tool.

Signed-off-by: Surya Seetharaman <suryaseetharaman.9@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/comedi/drivers/ni_mio_common.c

index c855787..785ad70 100644 (file)
@@ -686,13 +686,12 @@ static inline void ni_set_ai_dma_channel(struct comedi_device *dev, int channel)
 {
        unsigned bitfield;
 
-       if (channel >= 0) {
+       if (channel >= 0)
                bitfield =
                    (ni_stc_dma_channel_select_bitfield(channel) <<
                     AI_DMA_Select_Shift) & AI_DMA_Select_Mask;
-       } else {
+       else
                bitfield = 0;
-       }
        ni_set_bitfield(dev, AI_AO_Select, AI_DMA_Select_Mask, bitfield);
 }
 
@@ -701,13 +700,12 @@ static inline void ni_set_ao_dma_channel(struct comedi_device *dev, int channel)
 {
        unsigned bitfield;
 
-       if (channel >= 0) {
+       if (channel >= 0)
                bitfield =
                    (ni_stc_dma_channel_select_bitfield(channel) <<
                     AO_DMA_Select_Shift) & AO_DMA_Select_Mask;
-       } else {
+       else
                bitfield = 0;
-       }
        ni_set_bitfield(dev, AI_AO_Select, AO_DMA_Select_Mask, bitfield);
 }