mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-05-02 18:17:50 -04:00
drivers/staging: Remove unnecessary semicolons
Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
ae0d9ebaff
commit
859171ca92
@@ -1008,7 +1008,7 @@ int i_APCI1710_InsnWriteEnableDisableTorCounter(struct comedi_device *dev,
|
||||
b_ExternGate = (unsigned char) data[3];
|
||||
b_CycleMode = (unsigned char) data[4];
|
||||
b_InterruptEnable = (unsigned char) data[5];
|
||||
i_ReturnValue = insn->n;;
|
||||
i_ReturnValue = insn->n;
|
||||
devpriv->tsk_Current = current; /* Save the current process task structure */
|
||||
/**************************/
|
||||
/* Test the module number */
|
||||
|
||||
@@ -2850,7 +2850,7 @@ static int i_APCI1500_Reset(struct comedi_device *dev)
|
||||
i_Logic = 0;
|
||||
i_CounterLogic = 0;
|
||||
i_InterruptMask = 0;
|
||||
i_InputChannel = 0;;
|
||||
i_InputChannel = 0;
|
||||
i_TimerCounter1Enabled = 0;
|
||||
i_TimerCounter2Enabled = 0;
|
||||
i_WatchdogCounter3Enabled = 0;
|
||||
|
||||
@@ -335,7 +335,7 @@ int i_APCI1516_WriteDigitalOutput(struct comedi_device *dev, struct comedi_subde
|
||||
return -EINVAL;
|
||||
} /* if else data[3]==1) */
|
||||
} /* if else data[3]==0) */
|
||||
return (insn->n);;
|
||||
return (insn->n);
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
@@ -339,7 +339,7 @@ int i_APCI3501_ConfigAnalogOutput(struct comedi_device *dev, struct comedi_subde
|
||||
int i_APCI3501_WriteAnalogOutput(struct comedi_device *dev, struct comedi_subdevice *s,
|
||||
struct comedi_insn *insn, unsigned int *data)
|
||||
{
|
||||
unsigned int ul_Command1 = 0, ul_Channel_no, ul_Polarity, ul_DAC_Ready = 0;;
|
||||
unsigned int ul_Command1 = 0, ul_Channel_no, ul_Polarity, ul_DAC_Ready = 0;
|
||||
|
||||
ul_Channel_no = CR_CHAN(insn->chanspec);
|
||||
|
||||
|
||||
@@ -971,7 +971,7 @@ static int pci230_attach(struct comedi_device *dev, struct comedi_devconfig *it)
|
||||
if (thisboard->ao_chans > 0) {
|
||||
s->type = COMEDI_SUBD_AO;
|
||||
s->subdev_flags = SDF_WRITABLE | SDF_GROUND;
|
||||
s->n_chan = thisboard->ao_chans;;
|
||||
s->n_chan = thisboard->ao_chans;
|
||||
s->maxdata = (1 << thisboard->ao_bits) - 1;
|
||||
s->range_table = &pci230_ao_range;
|
||||
s->insn_write = &pci230_ao_winsn;
|
||||
|
||||
@@ -169,7 +169,7 @@ static int das16cs_attach(struct comedi_device *dev,
|
||||
if (!link)
|
||||
return -EIO;
|
||||
|
||||
dev->iobase = link->resource[0]->start;;
|
||||
dev->iobase = link->resource[0]->start;
|
||||
printk("I/O base=0x%04lx ", dev->iobase);
|
||||
|
||||
printk("fingerprint:\n");
|
||||
|
||||
@@ -370,7 +370,7 @@ static int doDevConfig(struct comedi_device *dev, struct comedi_devconfig *it)
|
||||
struct comedi_device *devs_opened[COMEDI_NUM_BOARD_MINORS];
|
||||
|
||||
memset(devs_opened, 0, sizeof(devs_opened));
|
||||
devpriv->name[0] = 0;;
|
||||
devpriv->name[0] = 0;
|
||||
/* Loop through all comedi devices specified on the command-line,
|
||||
building our device list */
|
||||
for (i = 0; i < COMEDI_NDEVCONFOPTS && (!i || it->options[i]); ++i) {
|
||||
|
||||
Reference in New Issue
Block a user