Skip to content

Commit

Permalink
Staging: comedi: move another pci vendor id
Browse files Browse the repository at this point in the history
Move the vendor id to the drivers needing it.

Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Greg Kroah-Hartman committed May 11, 2010
1 parent 558587e commit 59af888
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
1 change: 0 additions & 1 deletion drivers/staging/comedi/comedidev.h
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@
COMEDI_MODULE_MACROS \
COMEDI_PCI_INITCLEANUP_NOMODULE(comedi_driver, pci_id_table)

#define PCI_VENDOR_ID_ADVANTECH 0x13fe
#define PCI_VENDOR_ID_AMPLICON 0x14dc
#define PCI_VENDOR_ID_ADLINK 0x144a
#define PCI_VENDOR_ID_ICP 0x104c
Expand Down
2 changes: 2 additions & 0 deletions drivers/staging/comedi/drivers/adv_pci1710.c
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ Configuration options:
#define DPRINTK(fmt, args...)
#endif

#define PCI_VENDOR_ID_ADVANTECH 0x13fe

/* hardware types of the cards */
#define TYPE_PCI171X 0
#define TYPE_PCI1713 2
Expand Down
4 changes: 2 additions & 2 deletions drivers/staging/comedi/drivers/adv_pci1723.c
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ configures all channels in the same group.

#include "comedi_pci.h"

#define ADVANTECH_VENDOR 0x13fe /* Advantech PCI vendor ID */
#define PCI_VENDOR_ID_ADVANTECH 0x13fe /* Advantech PCI vendor ID */

/* hardware types of the cards */
#define TYPE_PCI1723 0
Expand Down Expand Up @@ -139,7 +139,7 @@ struct pci1723_board {
static const struct pci1723_board boardtypes[] = {
{
.name = "pci1723",
.vendor_id = ADVANTECH_VENDOR,
.vendor_id = PCI_VENDOR_ID_ADVANTECH,
.device_id = 0x1723,
.iorange = IORANGE_1723,
.cardtype = TYPE_PCI1723,
Expand Down
2 changes: 2 additions & 0 deletions drivers/staging/comedi/drivers/adv_pci_dio.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ Configuration options:
#define DPRINTK(fmt, args...)
#endif

#define PCI_VENDOR_ID_ADVANTECH 0x13fe

/* hardware types of the cards */
enum hw_cards_id {
TYPE_PCI1730, TYPE_PCI1733, TYPE_PCI1734, TYPE_PCI1736,
Expand Down

0 comments on commit 59af888

Please sign in to comment.