Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit dde4196e authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman
Browse files

staging: comedi: rtd520: use pci_ioremap_bar()



Use pci_ioremap_bar() to ioremap the PCI bars used by this driver.

Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Reviewed-by: default avatarIan Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 2fb0e849
Loading
Loading
Loading
Loading
+3 −6
Original line number Diff line number Diff line
@@ -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;