• Home
  • Raw
  • Download

Lines Matching full:product

143 	  int_product_id == dev->product &&  in get_module_name_from_pcimap()
184 /* Intializing the vendor/product name for each pci device to "unknown" */ in get_class_name_from_pci_ids()
264 /* Try to match any pci device to the appropriate vendor and product name */
271 char product[PCI_PRODUCT_NAME_SIZE]; in get_name_from_pci_ids() local
283 /* Intializing the vendor/product name for each pci device to "unknown" */ in get_name_from_pci_ids()
346 /* if we have a tab + a char, it means this is a product id in get_name_from_pci_ids()
351 /* the product name the second field */ in get_name_from_pci_ids()
352 strlcpy(product, skipspace(strstr(line, " ")), in get_name_from_pci_ids()
354 remove_eol(product); in get_name_from_pci_ids()
356 /* the product id is first field */ in get_name_from_pci_ids()
369 int_product_id == dev->product) { in get_name_from_pci_ids()
372 strlcpy(dev->dev_info->product_name, product, in get_name_from_pci_ids()
377 /* if we have two tabs, it means this is a sub product in get_name_from_pci_ids()
382 /* the product name is last field */ in get_name_from_pci_ids()
383 strlcpy(product, skipspace(strstr(line, " ")), in get_name_from_pci_ids()
385 strlcpy(product, skipspace(strstr(product, " ")), in get_name_from_pci_ids()
387 remove_eol(product); in get_name_from_pci_ids()
404 int_product_id == dev->product && in get_name_from_pci_ids()
409 strlcpy(dev->dev_info->product_name, product, in get_name_from_pci_ids()
432 /* they are made of vendor/product subvendor/subproduct ids */ in find_pci_device()
440 ("PCI Match: Vendor=%04x Product=%04x Sub_vendor=%04x Sub_Product=%04x Release=%02x\n", in find_pci_device()
441 dev->vendor, dev->product, dev->sub_vendor, in find_pci_device()
642 * a missing subvendor/product have to be considered as 0xFFFF*/ in get_module_name_from_alias()
661 /* Searching for the product separator*/ in get_module_name_from_alias()
675 /* Searching for the sub product separator*/ in get_module_name_from_alias()
703 int_product_id == dev->product && in get_module_name_from_alias()