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

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

staging: comedi: adl_pci6208: remove the bogus pci devices



Remove the commented out pci device entries in the MODULE_DEVICE_TABLE
as well as the associated boardinfo, which is also commented out. Add
some whitespace to the boardinfo to improve readability.

This driver should also support the pci-6216 card which has an
additional 8 analog outputs (16 total). But the device id needs
to be determined.

Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 98bcf911
Loading
Loading
Loading
Loading
+4 −18
Original line number Original line Diff line number Diff line
@@ -73,21 +73,11 @@ struct pci6208_board {
};
};


static const struct pci6208_board pci6208_boards[] = {
static const struct pci6208_board pci6208_boards[] = {
	/*{
	   .name = "pci6208v",
	   .dev_id = 0x6208,      // not sure
	   .ao_chans = 8
	   },
	   {
	   .name = "pci6216v",
	   .dev_id = 0x6208,      // not sure
	   .ao_chans = 16
	   }, */
	{
	{
		.name		= "pci6208a",
		.name		= "pci6208a",
		.dev_id		= 0x6208,
		.dev_id		= 0x6208,
	 .ao_chans = 8
		.ao_chans	= 8,
	 }
	},
};
};


struct pci6208_private {
struct pci6208_private {
@@ -307,11 +297,7 @@ static void __devexit adl_pci6208_pci_remove(struct pci_dev *dev)
	comedi_pci_auto_unconfig(dev);
	comedi_pci_auto_unconfig(dev);
}
}


/* This is used by modprobe to translate PCI IDs to drivers.  Should
 * only be used for PCI and ISA-PnP devices */
static DEFINE_PCI_DEVICE_TABLE(adl_pci6208_pci_table) = {
static DEFINE_PCI_DEVICE_TABLE(adl_pci6208_pci_table) = {
	/* { PCI_VENDOR_ID_ADLINK, 0x6208, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, */
	/* { PCI_VENDOR_ID_ADLINK, 0x6208, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, */
	{ PCI_DEVICE(PCI_VENDOR_ID_ADLINK, 0x6208) },
	{ PCI_DEVICE(PCI_VENDOR_ID_ADLINK, 0x6208) },
	{ 0 }
	{ 0 }
};
};