/kernel/linux/linux-5.10/sound/firewire/dice/ |
H A D | dice.c | 34 int key, val, vendor = -1, model = -1; in check_dice_category() local 47 vendor = val; in check_dice_category() 55 if (vendor == OUI_WEISS) in check_dice_category() 57 else if (vendor == OUI_LOUD) in check_dice_category() 61 if (device->config_rom[3] != ((vendor << 8) | category) || in check_dice_category() 96 char vendor[32], model[32]; in dice_card_strings() local 115 strcpy(vendor, "?"); in dice_card_strings() 116 fw_csr_string(dev->config_rom + 5, CSR_VENDOR, vendor, sizeof(vendor)); in dice_card_strings() 121 vendor, mode in dice_card_strings() [all...] |
/kernel/linux/linux-6.6/sound/firewire/oxfw/ |
H A D | oxfw.c | 68 char vendor[24]; in name_card() local 74 /* get vendor name from root directory */ in name_card() 76 vendor, sizeof(vendor)); in name_card() 103 v = vendor; in name_card() 136 int vendor, model; in detect_quirks() local 179 vendor = model = 0; in detect_quirks() 183 vendor = val; in detect_quirks() 188 if (vendor == VENDOR_LOUD) { in detect_quirks() 309 #define OXFW_DEV_ENTRY(vendor, mode [all...] |
/kernel/linux/linux-5.10/drivers/pci/ |
H A D | pci-stub.c | 26 "\"vendor:device[:subvendor[:subdevice[:class[:class_mask]]]]\"" 57 unsigned int vendor, device, subvendor = PCI_ANY_ID, in pci_stub_init() local 65 &vendor, &device, &subvendor, &subdevice, in pci_stub_init() 74 vendor, device, subvendor, subdevice, class, class_mask); in pci_stub_init() 76 rc = pci_add_dynid(&stub_driver, vendor, device, in pci_stub_init()
|
H A D | search.c | 289 * pci_get_subsys - begin or continue searching for a PCI device by vendor/subvendor/device/subdevice id 290 * @vendor: PCI vendor id to match, or %PCI_ANY_ID to match all vendor ids 292 * @ss_vendor: PCI subsystem vendor id to match, or %PCI_ANY_ID to match all vendor ids 297 * with a matching @vendor, @device, @ss_vendor and @ss_device, a pointer to its 304 struct pci_dev *pci_get_subsys(unsigned int vendor, unsigned int device, in pci_get_subsys() argument 309 .vendor = vendor, in pci_get_subsys() 333 pci_get_device(unsigned int vendor, unsigned int device, struct pci_dev *from) pci_get_device() argument [all...] |
/kernel/linux/linux-6.6/drivers/pci/ |
H A D | pci-stub.c | 26 "\"vendor:device[:subvendor[:subdevice[:class[:class_mask]]]]\"" 58 unsigned int vendor, device, subvendor = PCI_ANY_ID, in pci_stub_init() local 66 &vendor, &device, &subvendor, &subdevice, in pci_stub_init() 75 vendor, device, subvendor, subdevice, class, class_mask); in pci_stub_init() 77 rc = pci_add_dynid(&stub_driver, vendor, device, in pci_stub_init()
|
H A D | search.c | 286 * pci_get_subsys - begin or continue searching for a PCI device by vendor/subvendor/device/subdevice id 287 * @vendor: PCI vendor id to match, or %PCI_ANY_ID to match all vendor ids 289 * @ss_vendor: PCI subsystem vendor id to match, or %PCI_ANY_ID to match all vendor ids 294 * with a matching @vendor, @device, @ss_vendor and @ss_device, a pointer to its 301 struct pci_dev *pci_get_subsys(unsigned int vendor, unsigned int device, in pci_get_subsys() argument 306 .vendor = vendor, in pci_get_subsys() 330 pci_get_device(unsigned int vendor, unsigned int device, struct pci_dev *from) pci_get_device() argument [all...] |
/kernel/linux/linux-6.6/include/linux/ |
H A D | pci.h | 332 unsigned short vendor; member 953 .vendor = (vend), .device = (dev), \ 968 .vendor = (vend), .device = (dev), .subvendor = PCI_ANY_ID, \ 996 .vendor = (vend), .device = (dev), \ 1005 * specific PCI class. The vendor, device, subvendor, and subdevice 1010 .vendor = PCI_ANY_ID, .device = PCI_ANY_ID, \ 1015 * @vend: the vendor name 1024 .vendor = PCI_VENDOR_ID_##vend, .device = (dev), \ 1029 * @vend: the vendor name (without PCI_VENDOR_ID_ prefix) 1038 .vendor 1940 pci_get_device(unsigned int vendor, unsigned int device, struct pci_dev *from) pci_get_device() argument 1945 pci_get_subsys(unsigned int vendor, unsigned int device, unsigned int ss_vendor, unsigned int ss_device, struct pci_dev *from) pci_get_subsys() argument 2150 u16 vendor; /* Or PCI_ANY_ID */ global() member [all...] |
H A D | mod_devicetable.h | 26 * @vendor: Vendor ID to match (or PCI_ANY_ID) 28 * @subvendor: Subsystem vendor ID to match (or PCI_ANY_ID) 34 * as vendor/device is normally sufficient. 45 __u32 vendor, device; /* Vendor and device ID or PCI_ANY_ID*/ member 88 * @idVendor: USB vendor ID for a device; numbers are assigned 91 * @bcdDevice_lo: Low end of range of vendor-assigned product version numbers. 98 * or be vendor-specific. Device classes specify behavior of all 104 * or be vendor-specific. Interface classes specify behavior only 109 * fixed interface numbers to differentiate between vendor-specific 148 /* Used for vendor 176 __u32 vendor; global() member 367 __u16 vendor; global() member 415 __u16 vendor; /* Vendor or SDIO_ANY_ID */ global() member 422 __u16 vendor; global() member 451 __u32 vendor; global() member 651 unsigned short vendor, function; global() member 688 __u16 vendor; global() member 716 __u32 vendor; /* Vendor ID or IPACK_ANY_ID */ global() member 765 __u16 vendor; global() member 779 __u16 vendor; global() member 944 __u16 vendor; global() member [all...] |
/kernel/linux/linux-5.10/drivers/mmc/core/ |
H A D | sdio_bus.c | 43 sdio_config_attr(vendor, "0x%04x\n", func->vendor); 46 sdio_config_attr(modalias, "sdio:c%02Xv%04Xd%04X\n", func->class, func->vendor, func->device); 85 if (id->vendor != (__u16)SDIO_ANY_ID && id->vendor != func->vendor) in sdio_match_one() 100 while (ids->class || ids->vendor || ids->device) { in sdio_match_device() 132 "SDIO_ID=%04X:%04X", func->vendor, func->device)) in sdio_bus_uevent() 146 func->class, func->vendor, func->device)) in sdio_bus_uevent()
|
H A D | sdio_cis.c | 86 unsigned int vendor, device; in cistpl_manfid() local 89 vendor = buf[0] | (buf[1] << 8); in cistpl_manfid() 95 func->vendor = vendor; in cistpl_manfid() 98 card->cis.vendor = vendor; in cistpl_manfid() 398 if (func->vendor == 0) { in sdio_read_func_cis() 399 func->vendor = func->card->cis.vendor; in sdio_read_func_cis()
|
/kernel/linux/linux-6.6/drivers/mmc/core/ |
H A D | sdio_bus.c | 44 sdio_config_attr(vendor, "0x%04x\n", func->vendor); 47 sdio_config_attr(modalias, "sdio:c%02Xv%04Xd%04X\n", func->class, func->vendor, func->device); 86 if (id->vendor != (__u16)SDIO_ANY_ID && id->vendor != func->vendor) in sdio_match_one() 101 while (ids->class || ids->vendor || ids->device) { in sdio_match_device() 133 "SDIO_ID=%04X:%04X", func->vendor, func->device)) in sdio_bus_uevent() 147 func->class, func->vendor, func->device)) in sdio_bus_uevent()
|
H A D | sdio_cis.c | 86 unsigned int vendor, device; in cistpl_manfid() local 89 vendor = buf[0] | (buf[1] << 8); in cistpl_manfid() 95 func->vendor = vendor; in cistpl_manfid() 98 card->cis.vendor = vendor; in cistpl_manfid() 343 pr_debug_ratelimited(FMT("vendor"), in sdio_read_cis() 410 if (func->vendor == 0) { in sdio_read_func_cis() 411 func->vendor = func->card->cis.vendor; in sdio_read_func_cis() [all...] |
/kernel/linux/linux-5.10/drivers/usb/host/ |
H A D | uhci-pci.c | 56 if (pdev->vendor == PCI_VENDOR_ID_INTEL) in uhci_pci_configure_hc() 64 switch (to_pci_dev(uhci_dev(uhci))->vendor) { in uhci_pci_resume_detect_interrupts_are_broken() 127 if (to_pci_dev(uhci_dev(uhci))->vendor == PCI_VENDOR_ID_VIA || in uhci_pci_init() 128 to_pci_dev(uhci_dev(uhci))->vendor == PCI_VENDOR_ID_ZHAOXIN) in uhci_pci_init() 132 if (to_pci_dev(uhci_dev(uhci))->vendor == PCI_VENDOR_ID_HP) in uhci_pci_init() 136 if (to_pci_dev(uhci_dev(uhci))->vendor == PCI_VENDOR_ID_INTEL) in uhci_pci_init() 194 if (pdev->vendor == PCI_VENDOR_ID_INTEL) in uhci_pci_suspend()
|
/kernel/linux/linux-6.6/drivers/usb/host/ |
H A D | uhci-pci.c | 56 if (pdev->vendor == PCI_VENDOR_ID_INTEL) in uhci_pci_configure_hc() 64 switch (to_pci_dev(uhci_dev(uhci))->vendor) { in uhci_pci_resume_detect_interrupts_are_broken() 127 if (to_pci_dev(uhci_dev(uhci))->vendor == PCI_VENDOR_ID_VIA || in uhci_pci_init() 128 to_pci_dev(uhci_dev(uhci))->vendor == PCI_VENDOR_ID_ZHAOXIN) in uhci_pci_init() 132 if (to_pci_dev(uhci_dev(uhci))->vendor == PCI_VENDOR_ID_HP) in uhci_pci_init() 136 if (to_pci_dev(uhci_dev(uhci))->vendor == PCI_VENDOR_ID_INTEL) in uhci_pci_init() 194 if (pdev->vendor == PCI_VENDOR_ID_INTEL) in uhci_pci_suspend()
|
/kernel/linux/linux-5.10/drivers/tty/serial/8250/ |
H A D | 8250_pci.c | 34 u32 vendor; member 83 str, dev->vendor, dev->device, in moan_device() 263 if (dev->vendor == PCI_VENDOR_ID_PANACOM || in pci_plx9050_init() 267 if ((dev->vendor == PCI_VENDOR_ID_PLX) && in pci_plx9050_init() 1006 if (dev->vendor == PCI_VENDOR_ID_OXSEMI && in pci_oxsemi_tornado_p() 1011 if (dev->vendor == PCI_VENDOR_ID_ENDRUN && in pci_oxsemi_tornado_p() 1040 dev->vendor == PCI_VENDOR_ID_ENDRUN ? in pci_oxsemi_tornado_init() 1661 priv->dev->vendor, priv->dev->device, in skip_tx_en_setup() 1936 * This list is ordered alphabetically by vendor then device. 1944 .vendor [all...] |
/kernel/linux/linux-6.6/drivers/tty/serial/8250/ |
H A D | 8250_pci.c | 36 u32 vendor; member 87 str, dev->vendor, dev->device, in moan_device() 246 if (dev->vendor == PCI_VENDOR_ID_PANACOM || in pci_plx9050_init() 250 if ((dev->vendor == PCI_VENDOR_ID_PLX) && in pci_plx9050_init() 989 if (dev->vendor == PCI_VENDOR_ID_OXSEMI && in pci_oxsemi_tornado_p() 994 if (dev->vendor == PCI_VENDOR_ID_ENDRUN && in pci_oxsemi_tornado_p() 1023 dev->vendor == PCI_VENDOR_ID_ENDRUN ? in pci_oxsemi_tornado_init() 1744 priv->dev->vendor, priv->dev->device, in skip_tx_en_setup() 1983 * This list is ordered alphabetically by vendor then device. 1991 .vendor [all...] |
/kernel/linux/linux-5.10/arch/ia64/kernel/ |
H A D | acpi-ext.c | 19 * the producer/consumer flag, so HP invented a vendor-defined resource to 34 struct acpi_resource_vendor_typed *vendor; in hp_ccsr_locate() local 40 vendor = &resource->data.vendor_typed; in hp_ccsr_locate() 42 if (ACPI_FAILURE(status) || vendor->byte_length < 16) { in hp_ccsr_locate() 47 memcpy(base, vendor->byte_data, sizeof(*base)); in hp_ccsr_locate() 48 memcpy(length, vendor->byte_data + 8, sizeof(*length)); in hp_ccsr_locate()
|
/kernel/linux/linux-5.10/arch/x86/platform/geode/ |
H A D | alix.c | 164 const char *vendor, *product; in alix_present_dmi() local 166 vendor = dmi_get_system_info(DMI_SYS_VENDOR); in alix_present_dmi() 167 if (!vendor || strcmp(vendor, "PC Engines")) in alix_present_dmi() 175 KBUILD_MODNAME, vendor, product); in alix_present_dmi()
|
/kernel/linux/linux-6.6/arch/ia64/kernel/ |
H A D | acpi-ext.c | 19 * the producer/consumer flag, so HP invented a vendor-defined resource to 34 struct acpi_resource_vendor_typed *vendor; in hp_ccsr_locate() local 40 vendor = &resource->data.vendor_typed; in hp_ccsr_locate() 42 if (ACPI_FAILURE(status) || vendor->byte_length < 16) { in hp_ccsr_locate() 47 memcpy(base, vendor->byte_data, sizeof(*base)); in hp_ccsr_locate() 48 memcpy(length, vendor->byte_data + 8, sizeof(*length)); in hp_ccsr_locate()
|
/kernel/linux/linux-5.10/drivers/xen/xen-pciback/ |
H A D | conf_space_quirks.c | 21 if ((id->vendor == PCI_ANY_ID || id->vendor == dev->vendor) && in match_one_device() 106 quirk->devid.vendor = dev->vendor; in xen_pcibk_config_quirks_init()
|
/kernel/linux/linux-5.10/drivers/media/usb/go7007/ |
H A D | go7007-loader.c | 13 u16 vendor; member 39 u16 vendor, product; in go7007_loader_probe() local 53 vendor = le16_to_cpu(usbdev->descriptor.idVendor); in go7007_loader_probe() 57 if (fw_configs[i].vendor == vendor && in go7007_loader_probe()
|
/kernel/linux/linux-6.6/drivers/media/usb/go7007/ |
H A D | go7007-loader.c | 13 u16 vendor; member 39 u16 vendor, product; in go7007_loader_probe() local 53 vendor = le16_to_cpu(usbdev->descriptor.idVendor); in go7007_loader_probe() 57 if (fw_configs[i].vendor == vendor && in go7007_loader_probe()
|
/kernel/linux/linux-6.6/drivers/xen/xen-pciback/ |
H A D | conf_space_quirks.c | 21 if ((id->vendor == PCI_ANY_ID || id->vendor == dev->vendor) && in match_one_device() 106 quirk->devid.vendor = dev->vendor; in xen_pcibk_config_quirks_init()
|
/kernel/linux/linux-6.6/arch/x86/platform/geode/ |
H A D | alix.c | 171 const char *vendor, *product; in alix_present_dmi() local 173 vendor = dmi_get_system_info(DMI_SYS_VENDOR); in alix_present_dmi() 174 if (!vendor || strcmp(vendor, "PC Engines")) in alix_present_dmi() 182 KBUILD_MODNAME, vendor, product); in alix_present_dmi()
|
/kernel/linux/linux-5.10/include/linux/ |
H A D | mod_devicetable.h | 21 * @vendor: Vendor ID to match (or PCI_ANY_ID) 23 * @subvendor: Subsystem vendor ID to match (or PCI_ANY_ID) 29 * as vendor/device is normally sufficient. 39 __u32 vendor, device; /* Vendor and device ID or PCI_ANY_ID*/ member 81 * @idVendor: USB vendor ID for a device; numbers are assigned 84 * @bcdDevice_lo: Low end of range of vendor-assigned product version numbers. 91 * or be vendor-specific. Device classes specify behavior of all 97 * or be vendor-specific. Interface classes specify behavior only 102 * fixed interface numbers to differentiate between vendor-specific 141 /* Used for vendor 169 __u32 vendor; global() member 347 __u16 vendor; global() member 395 __u16 vendor; /* Vendor or SDIO_ANY_ID */ global() member 402 __u16 vendor; global() member 431 __u32 vendor; global() member 630 unsigned short vendor, function; global() member 667 __u16 vendor; global() member 695 __u32 vendor; /* Vendor ID or IPACK_ANY_ID */ global() member 744 __u16 vendor; global() member 758 __u16 vendor; global() member [all...] |