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

staging: comedi: gsc_hpdi: remove the base_address_regions enum



This enum is only used in the ioremap of the PCI resources and it
doesn't really help make the code any clearer.

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 10e6b555
Loading
Loading
Loading
Loading
+4 −10
Original line number Diff line number Diff line
@@ -78,12 +78,6 @@ static int dio_config_block_size(struct comedi_device *dev, unsigned int *data);
#define NUM_DMA_BUFFERS 4
#define NUM_DMA_DESCRIPTORS 256

/* indices of base address regions */
enum base_address_regions {
	PLX9080_BADDRINDEX = 0,
	HPDI_BADDRINDEX = 2,
};

enum hpdi_registers {
	FIRMWARE_REV_REG = 0x0,
	BOARD_CONTROL_REG = 0x4,
@@ -505,11 +499,11 @@ static int hpdi_auto_attach(struct comedi_device *dev,
	pci_set_master(pcidev);

	devpriv->plx9080_iobase =
		ioremap(pci_resource_start(pcidev, PLX9080_BADDRINDEX),
			pci_resource_len(pcidev, PLX9080_BADDRINDEX));
		ioremap(pci_resource_start(pcidev, 0),
			pci_resource_len(pcidev, 0));
	devpriv->hpdi_iobase =
		ioremap(pci_resource_start(pcidev, HPDI_BADDRINDEX),
			pci_resource_len(pcidev, HPDI_BADDRINDEX));
		ioremap(pci_resource_start(pcidev, 2),
			pci_resource_len(pcidev, 2));
	if (!devpriv->plx9080_iobase || !devpriv->hpdi_iobase) {
		dev_warn(dev->class_dev, "failed to remap io memory\n");
		return -ENOMEM;