Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/drivers/gpib/include/gpib_pci_ids.h
38184 views
1
/* SPDX-License-Identifier: GPL-2.0 */
2
3
#ifndef __GPIB_PCI_IDS_H
4
#define __GPIB_PCI_IDS_H
5
6
#ifndef PCI_VENDOR_ID_AMCC
7
#define PCI_VENDOR_ID_AMCC 0x10e8
8
#endif
9
10
#ifndef PCI_VENDOR_ID_CBOARDS
11
#define PCI_VENDOR_ID_CBOARDS 0x1307
12
#endif
13
14
#ifndef PCI_VENDOR_ID_QUANCOM
15
#define PCI_VENDOR_ID_QUANCOM 0x8008
16
#endif
17
18
#ifndef PCI_DEVICE_ID_QUANCOM_GPIB
19
#define PCI_DEVICE_ID_QUANCOM_GPIB 0x3302
20
#endif
21
22
#endif // __GPIB_PCI_IDS_H
23
24
25