Staging: comedi: adq12b: Checkpatch cleanups
This fixes some checkpatch issues in the adq12b comedi driver. Signed-off-by: Benjamin Adolphi <b.adolphi@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
0289bb5d18
commit
d2e01434fd
@@ -164,14 +164,15 @@ struct adq12b_private {
|
|||||||
static int adq12b_attach(struct comedi_device *dev,
|
static int adq12b_attach(struct comedi_device *dev,
|
||||||
struct comedi_devconfig *it);
|
struct comedi_devconfig *it);
|
||||||
static int adq12b_detach(struct comedi_device *dev);
|
static int adq12b_detach(struct comedi_device *dev);
|
||||||
|
|
||||||
static struct comedi_driver driver_adq12b = {
|
static struct comedi_driver driver_adq12b = {
|
||||||
driver_name:"adq12b",
|
.driver_name = "adq12b",
|
||||||
module:THIS_MODULE,
|
.module = THIS_MODULE,
|
||||||
attach:adq12b_attach,
|
.attach = adq12b_attach,
|
||||||
detach:adq12b_detach,
|
.detach = adq12b_detach,
|
||||||
board_name:&adq12b_boards[0].name,
|
.board_name = &adq12b_boards[0].name,
|
||||||
offset:sizeof(struct adq12b_board),
|
.offset = sizeof(struct adq12b_board),
|
||||||
num_names:ARRAY_SIZE(adq12b_boards),
|
.num_names = ARRAY_SIZE(adq12b_boards),
|
||||||
};
|
};
|
||||||
|
|
||||||
static int adq12b_ai_rinsn(struct comedi_device *dev,
|
static int adq12b_ai_rinsn(struct comedi_device *dev,
|
||||||
@@ -259,11 +260,10 @@ static int adq12b_attach(struct comedi_device *dev, struct comedi_devconfig *it)
|
|||||||
s->n_chan = thisboard->ai_se_chans;
|
s->n_chan = thisboard->ai_se_chans;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (unipolar) {
|
if (unipolar)
|
||||||
s->range_table = &range_adq12b_ai_unipolar;
|
s->range_table = &range_adq12b_ai_unipolar;
|
||||||
} else {
|
else
|
||||||
s->range_table = &range_adq12b_ai_bipolar;
|
s->range_table = &range_adq12b_ai_bipolar;
|
||||||
}
|
|
||||||
|
|
||||||
s->maxdata = (1 << thisboard->ai_bits) - 1;
|
s->maxdata = (1 << thisboard->ai_bits) - 1;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user