summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH Hartley Sweeten <hsweeten@visionengravers.com>2014-02-17 14:26:51 -0700
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-02-18 11:53:53 -0800
commitfef20bff22ae3f27e9302266940a3e437984cd6a (patch)
treecbec515a0a2d275d439c307e5dfa0ab5d45ed8b9
parent4ba4a2d307de7b60b47506346ad5e2bdf37e211a (diff)
staging: comedi: pcl812: rename 'haveMPC508' in boardinfo
Rename this CamelCase member in the boardinfo and change it to a bit- field flag. Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Reviewed-by: Ian Abbott <abbotti@mev.co.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/staging/comedi/drivers/pcl812.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/staging/comedi/drivers/pcl812.c b/drivers/staging/comedi/drivers/pcl812.c
index 7f3d32080090..cbbadb82e653 100644
--- a/drivers/staging/comedi/drivers/pcl812.c
+++ b/drivers/staging/comedi/drivers/pcl812.c
@@ -341,7 +341,7 @@ struct pcl812_board {
const struct comedi_lrange *rangelist_ai;
unsigned int IRQbits;
unsigned int has_dma:1;
- unsigned char haveMPC508;
+ unsigned int has_mpc508_mux:1;
};
static const struct pcl812_board boardtypes[] = {
@@ -394,7 +394,7 @@ static const struct pcl812_board boardtypes[] = {
.rangelist_ai = &range_acl8112dg_ai,
.IRQbits = 0xdcfc,
.has_dma = 1,
- .haveMPC508 = 1,
+ .has_mpc508_mux = 1,
}, {
.name = "acl8112hg",
.board_type = boardACL8112,
@@ -408,7 +408,7 @@ static const struct pcl812_board boardtypes[] = {
.rangelist_ai = &range_acl8112hg_ai,
.IRQbits = 0xdcfc,
.has_dma = 1,
- .haveMPC508 = 1,
+ .has_mpc508_mux = 1,
}, {
.name = "a821pgl",
.board_type = boardA821,
@@ -531,7 +531,7 @@ static const struct pcl812_board boardtypes[] = {
.rangelist_ai = &range_pcl813b2_ai,
.IRQbits = 0xdcfc,
.has_dma = 1,
- .haveMPC508 = 1,
+ .has_mpc508_mux = 1,
}, {
.name = "a826pg",
.board_type = boardACL8216,
@@ -1401,7 +1401,7 @@ static int pcl812_attach(struct comedi_device *dev, struct comedi_devconfig *it)
else
s->insn_read = pcl812_ai_insn_read;
- devpriv->use_MPC = board->haveMPC508;
+ devpriv->use_MPC = board->has_mpc508_mux;
if (dev->irq) {
dev->read_subdev = s;
s->subdev_flags |= SDF_CMD_READ;