aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorManu Abraham <abraham.manu@gmail.com>2009-12-04 03:32:51 -0500
committerMauro Carvalho Chehab <mchehab@redhat.com>2010-01-17 08:55:41 -0500
commitff63ac56705539e162d2f020a0c2a607eae37d7b (patch)
tree8f568e4dfbbdefadf3443a7913ba1b74575dc4b4
parentf5701b67767c6b81a035c9e2b539025f91d1e84d (diff)
V4L/DVB (13784): [Mantis] Use PCI API instead of hardcoded length
Signed-off-by: Manu Abraham <manu@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r--drivers/media/dvb/mantis/mantis_pci.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/media/dvb/mantis/mantis_pci.c b/drivers/media/dvb/mantis/mantis_pci.c
index a068ffb3253..d3a62b18590 100644
--- a/drivers/media/dvb/mantis/mantis_pci.c
+++ b/drivers/media/dvb/mantis/mantis_pci.c
@@ -169,7 +169,10 @@ static int __devinit mantis_pci_probe(struct pci_dev *pdev,
169 goto err0; 169 goto err0;
170 } 170 }
171 171
172 if ((mantis->mantis_mmio = ioremap(mantis->mantis_addr, 0x1000)) == NULL) { 172 mantis->mantis_mmio = ioremap(pci_resource_start(pdev, 0),
173 pci_resource_len(pdev, 0));
174
175 if (!mantis->mantis_mmio) {
173 dprintk(verbose, MANTIS_ERROR, 1, "IO remap failed"); 176 dprintk(verbose, MANTIS_ERROR, 1, "IO remap failed");
174 ret = -ENODEV; 177 ret = -ENODEV;
175 goto err1; 178 goto err1;