mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
Staging: comedi: ni_mio_common.c: fixed brace coding style issue in two places
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>
This commit is contained in:
parent
1d06bb4e9d
commit
4475cf2ebf
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user