mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-15 21:21:49 -04:00
staging: comedi: rtd520: use pci_ioremap_bar()
Use pci_ioremap_bar() to ioremap the PCI bars used by this driver. 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>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
2fb0e84909
commit
dde4196ed1
@@ -1287,12 +1287,9 @@ static int rtd_auto_attach(struct comedi_device *dev,
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
devpriv->las0 = ioremap_nocache(pci_resource_start(pcidev, 2),
|
||||
pci_resource_len(pcidev, 2));
|
||||
devpriv->las1 = ioremap_nocache(pci_resource_start(pcidev, 3),
|
||||
pci_resource_len(pcidev, 3));
|
||||
devpriv->lcfg = ioremap_nocache(pci_resource_start(pcidev, 0),
|
||||
pci_resource_len(pcidev, 0));
|
||||
devpriv->las0 = pci_ioremap_bar(pcidev, 2);
|
||||
devpriv->las1 = pci_ioremap_bar(pcidev, 3);
|
||||
devpriv->lcfg = pci_ioremap_bar(pcidev, 0);
|
||||
if (!devpriv->las0 || !devpriv->las1 || !devpriv->lcfg)
|
||||
return -ENOMEM;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user