summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorH Hartley Sweeten <hsweeten@visionengravers.com>2014-02-17 14:27:10 -0700
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-02-18 11:55:30 -0800
commit8356d4b4f444fa5745f042527043a2ad3a5bf685 (patch)
tree1360b991180615ea2f5630951d99cf6233a57c37 /drivers
parent8cfda3f8764136a5a3f17078e99c073a3d377c1e (diff)
staging: comedi: pcl818: clarify irq request in pcl818_attach()
All the board types can use IRQ 2-7 for async command support. Remove the 'IRQbits', which is a mask of the valid IRQs, from the boardinfo and refactor pcl818_attach(). 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>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/staging/comedi/drivers/pcl818.c11
1 files changed, 2 insertions, 9 deletions
diff --git a/drivers/staging/comedi/drivers/pcl818.c b/drivers/staging/comedi/drivers/pcl818.c
index ded1bf8dbe3e..e3a2579eecf2 100644
--- a/drivers/staging/comedi/drivers/pcl818.c
+++ b/drivers/staging/comedi/drivers/pcl818.c
@@ -261,7 +261,6 @@ struct pcl818_board {
unsigned int ns_min;
int n_aochan;
const struct comedi_lrange *ai_range_type;
- unsigned int IRQbits;
int ai_maxdata;
int ao_maxdata;
unsigned int has_dma:1;
@@ -275,7 +274,6 @@ static const struct pcl818_board boardtypes[] = {
.ns_min = 25000,
.n_aochan = 1,
.ai_range_type = &range_pcl818l_l_ai,
- .IRQbits = 0x00fc,
.ai_maxdata = 0xfff,
.ao_maxdata = 0xfff,
.has_dma = 1,
@@ -285,7 +283,6 @@ static const struct pcl818_board boardtypes[] = {
.ns_min = 10000,
.n_aochan = 1,
.ai_range_type = &range_pcl818h_ai,
- .IRQbits = 0x00fc,
.ai_maxdata = 0xfff,
.ao_maxdata = 0xfff,
.has_dma = 1,
@@ -295,7 +292,6 @@ static const struct pcl818_board boardtypes[] = {
.ns_min = 10000,
.n_aochan = 1,
.ai_range_type = &range_pcl818h_ai,
- .IRQbits = 0x00fc,
.ai_maxdata = 0xfff,
.ao_maxdata = 0xfff,
.has_dma = 1,
@@ -306,7 +302,6 @@ static const struct pcl818_board boardtypes[] = {
.ns_min = 10000,
.n_aochan = 1,
.ai_range_type = &range_pcl818hg_ai,
- .IRQbits = 0x00fc,
.ai_maxdata = 0xfff,
.ao_maxdata = 0xfff,
.has_dma = 1,
@@ -317,7 +312,6 @@ static const struct pcl818_board boardtypes[] = {
.ns_min = 10000,
.n_aochan = 2,
.ai_range_type = &range_pcl818h_ai,
- .IRQbits = 0x00fc,
.ai_maxdata = 0xfff,
.ao_maxdata = 0xfff,
.has_dma = 1,
@@ -327,7 +321,6 @@ static const struct pcl818_board boardtypes[] = {
.ns_min = 16000,
.n_aochan = 2,
.ai_range_type = &range_unipolar5,
- .IRQbits = 0x00fc,
.ai_maxdata = 0xfff,
.ao_maxdata = 0xfff,
.has_dma = 1,
@@ -335,7 +328,6 @@ static const struct pcl818_board boardtypes[] = {
.name = "pcm3718",
.ns_min = 10000,
.ai_range_type = &range_pcl818h_ai,
- .IRQbits = 0x00fc,
.ai_maxdata = 0xfff,
.ao_maxdata = 0xfff,
.has_dma = 1,
@@ -1347,7 +1339,8 @@ static int pcl818_attach(struct comedi_device *dev, struct comedi_devconfig *it)
return -EIO;
}
- if ((1 << it->options[1]) & board->IRQbits) {
+ /* we can use IRQ 2-7 for async command support */
+ if (it->options[1] >= 2 && it->options[1] <= 7) {
ret = request_irq(it->options[1], interrupt_pcl818, 0,
dev->board_name, dev);
if (ret == 0)