Searched refs:product (Results 1 - 200 of 626) sorted by relevance

1234

/linux-4.1.27/net/bluetooth/
H A Decc.c274 uint128_t product; vli_mult() local
276 product = mul_64_64(left[i], right[k - i]); vli_mult()
278 r01 = add_128_128(r01, product); vli_mult()
279 r2 += (r01.m_high < product.m_high); vli_mult()
306 uint128_t product; vli_square() local
308 product = mul_64_64(left[i], left[k - i]); vli_square()
311 r2 += product.m_high >> 63; vli_square()
312 product.m_high = (product.m_high << 1) | vli_square()
313 (product.m_low >> 63); vli_square()
314 product.m_low <<= 1; vli_square()
317 r01 = add_128_128(r01, product); vli_square()
318 r2 += (r01.m_high < product.m_high); vli_square()
363 /* Computes result = product % curve_p
365 static void vli_mmod_fast(u64 *result, const u64 *product) vli_mmod_fast() argument
371 vli_set(result, product); vli_mmod_fast()
375 tmp[1] = product[5] & 0xffffffff00000000ull; vli_mmod_fast()
376 tmp[2] = product[6]; vli_mmod_fast()
377 tmp[3] = product[7]; vli_mmod_fast()
382 tmp[1] = product[6] << 32; vli_mmod_fast()
383 tmp[2] = (product[6] >> 32) | (product[7] << 32); vli_mmod_fast()
384 tmp[3] = product[7] >> 32; vli_mmod_fast()
389 tmp[0] = product[4]; vli_mmod_fast()
390 tmp[1] = product[5] & 0xffffffff; vli_mmod_fast()
392 tmp[3] = product[7]; vli_mmod_fast()
396 tmp[0] = (product[4] >> 32) | (product[5] << 32); vli_mmod_fast()
397 tmp[1] = (product[5] >> 32) | (product[6] & 0xffffffff00000000ull); vli_mmod_fast()
398 tmp[2] = product[7]; vli_mmod_fast()
399 tmp[3] = (product[6] >> 32) | (product[4] << 32); vli_mmod_fast()
403 tmp[0] = (product[5] >> 32) | (product[6] << 32); vli_mmod_fast()
404 tmp[1] = (product[6] >> 32); vli_mmod_fast()
406 tmp[3] = (product[4] & 0xffffffff) | (product[5] << 32); vli_mmod_fast()
410 tmp[0] = product[6]; vli_mmod_fast()
411 tmp[1] = product[7]; vli_mmod_fast()
413 tmp[3] = (product[4] >> 32) | (product[5] & 0xffffffff00000000ull); vli_mmod_fast()
417 tmp[0] = (product[6] >> 32) | (product[7] << 32); vli_mmod_fast()
418 tmp[1] = (product[7] >> 32) | (product[4] << 32); vli_mmod_fast()
419 tmp[2] = (product[4] >> 32) | (product[5] << 32); vli_mmod_fast()
420 tmp[3] = (product[6] << 32); vli_mmod_fast()
424 tmp[0] = product[7]; vli_mmod_fast()
425 tmp[1] = product[4] & 0xffffffff00000000ull; vli_mmod_fast()
426 tmp[2] = product[5]; vli_mmod_fast()
427 tmp[3] = product[6] & 0xffffffff00000000ull; vli_mmod_fast()
443 u64 product[2 * NUM_ECC_DIGITS]; vli_mod_mult_fast() local
445 vli_mult(product, left, right); vli_mod_mult_fast()
446 vli_mmod_fast(result, product); vli_mod_mult_fast()
452 u64 product[2 * NUM_ECC_DIGITS]; vli_mod_square_fast() local
454 vli_square(product, left); vli_mod_square_fast()
455 vli_mmod_fast(result, product); vli_mod_square_fast()
803 struct ecc_point product, pk; ecdh_shared_secret() local
811 ecc_point_mult(&product, &pk, priv, rand, vli_num_bits(priv)); ecdh_shared_secret()
813 ecc_native2bytes(product.x, secret); ecdh_shared_secret()
815 return !ecc_point_is_zero(&product); ecdh_shared_secret()
/linux-4.1.27/include/linux/usb/
H A Diowarrior.h19 /* product id : depends on type of chip (USB_DEVICE_ID_CODEMERCS_X) */
20 __u32 product; member in struct:iowarrior_info
37 Get some device-information (product-id , serial-number etc.)
H A Dinput.h21 id->product = le16_to_cpu(dev->descriptor.idProduct); usb_to_input_id()
/linux-4.1.27/arch/mn10300/kernel/
H A Dtime.c44 unsigned product[3]; /* 96-bit intermediate value */ sched_clock() local
64 : "=r"(product[0]), "=r"(product[1]), "=r"(product[2]), "=r"(tmp) sched_clock()
68 result.l[0] = product[1] << 16 | product[0] >> 16; sched_clock()
69 result.l[1] = product[2] << 16 | product[1] >> 16; sched_clock()
/linux-4.1.27/include/linux/input/
H A Dtps6507x-ts.h19 __u16 product; member in struct:touchscreen_init_data
/linux-4.1.27/arch/x86/platform/geode/
H A Dgeos.c103 const char *vendor, *product; geos_init() local
112 product = dmi_get_system_info(DMI_PRODUCT_NAME); geos_init()
113 if (!product || strcmp(product, "Geos")) geos_init()
117 KBUILD_MODNAME, vendor, product); geos_init()
H A Dalix.c164 const char *vendor, *product; alix_present_dmi() local
170 product = dmi_get_system_info(DMI_PRODUCT_NAME); alix_present_dmi()
171 if (!product || (strcmp(product, "ALIX.2D") && strcmp(product, "ALIX.6"))) alix_present_dmi()
175 KBUILD_MODNAME, vendor, product); alix_present_dmi()
/linux-4.1.27/arch/s390/include/asm/
H A Dappldata.h33 char prod_nr[7]; /* product number */
34 u16 prod_fn; /* product function */
/linux-4.1.27/arch/x86/include/asm/
H A Dpvclock.h25 u64 product; pvclock_scale_delta() local
46 : "=A" (product), "=r" (tmp1), "=r" (tmp2) pvclock_scale_delta()
51 : [lo]"=a"(product), pvclock_scale_delta()
59 return product; pvclock_scale_delta()
/linux-4.1.27/drivers/media/platform/coda/
H A Dcoda-bit.c70 if (dev->devtype->product == CODA_960 || coda_command_async()
71 dev->devtype->product == CODA_7541) { coda_command_async()
82 if (dev->devtype->product == CODA_960) { coda_command_async()
122 if (dev->devtype->product == CODA_960) { coda_hw_reset()
136 if (dev->devtype->product == CODA_960) coda_hw_reset()
294 if ((dev->devtype->product == CODA_960) && coda_bit_stream_end_flag()
307 if (dev->devtype->product == CODA_DX6) coda_parabuf_write()
356 dev->devtype->product != CODA_DX6) coda_alloc_framebuffers()
378 dev->devtype->product != CODA_DX6) coda_alloc_framebuffers()
385 if ((dev->devtype->product != CODA_DX6) && coda_alloc_framebuffers()
399 if (dev->devtype->product != CODA_DX6) coda_free_context_buffers()
418 if (dev->devtype->product == CODA_DX6) coda_alloc_context_buffers()
431 if (!ctx->psbuf.vaddr && dev->devtype->product == CODA_7541) { coda_alloc_context_buffers()
440 if (dev->devtype->product == CODA_960 && coda_alloc_context_buffers()
464 if (dev->devtype->product == CODA_960) coda_encode_header()
470 if (dev->devtype->product == CODA_960) coda_encode_header()
480 if (dev->devtype->product == CODA_960) { coda_encode_header()
526 switch (dev->devtype->product) { coda_setup_iram()
550 if (dev->devtype->product == CODA_7541) { coda_setup_iram()
612 if (dev->devtype->product == CODA_7541) { coda_setup_iram()
646 u16 product, major, minor, release; coda_check_firmware() local
669 if (dev->devtype->product == CODA_960) { coda_check_firmware()
677 product = CODA_FIRMWARE_PRODUCT(data); coda_check_firmware()
685 if (product != dev->devtype->product) { coda_check_firmware()
688 coda_product_name(dev->devtype->product), coda_check_firmware()
689 coda_product_name(product), major, minor, release); coda_check_firmware()
694 coda_product_name(product)); coda_check_firmware()
778 switch (dev->devtype->product) { coda_start_encoding()
797 if (dev->devtype->product == CODA_DX6) { coda_start_encoding()
805 switch (dev->devtype->product) { coda_start_encoding()
836 if (dev->devtype->product == CODA_960) coda_start_encoding()
845 if (dev->devtype->product == CODA_960) coda_start_encoding()
916 if (dev->devtype->product == CODA_960) coda_start_encoding()
932 if (dev->devtype->product == CODA_960) coda_start_encoding()
947 if (dev->devtype->product == CODA_960) { coda_start_encoding()
954 if (dev->devtype->product == CODA_DX6) coda_start_encoding()
971 switch (dev->devtype->product) { coda_start_encoding()
1001 if (dev->devtype->product == CODA_960) coda_start_encoding()
1020 if (dev->devtype->product == CODA_7541) { coda_start_encoding()
1024 if (dev->devtype->product != CODA_DX6) { coda_start_encoding()
1035 if (dev->devtype->product == CODA_960) { coda_start_encoding()
1155 if (dev->devtype->product == CODA_960) coda_prepare_encode()
1224 if (dev->devtype->product == CODA_960) { coda_prepare_encode()
1249 if (dev->devtype->product != CODA_DX6) coda_prepare_encode()
1466 if ((dev->devtype->product == CODA_7541) || __coda_start_decoding()
1467 (dev->devtype->product == CODA_960)) __coda_start_decoding()
1474 if (dev->devtype->product == CODA_960 && __coda_start_decoding()
1480 if (dev->devtype->product == CODA_7541) { __coda_start_decoding()
1486 if (dev->devtype->product == CODA_960) { __coda_start_decoding()
1491 if (dev->devtype->product != CODA_960) __coda_start_decoding()
1513 if (dev->devtype->product == CODA_DX6) { __coda_start_decoding()
1567 if (dev->devtype->product != CODA_DX6) { __coda_start_decoding()
1581 if (dev->devtype->product == CODA_960) __coda_start_decoding()
1586 if (dev->devtype->product == CODA_960) { __coda_start_decoding()
1614 if (dev->devtype->product == CODA_7541) { __coda_start_decoding()
1621 } else if (dev->devtype->product == CODA_960) { __coda_start_decoding()
1689 if (dev->devtype->product == CODA_960) coda_prepare_decode()
1692 if (dev->devtype->product == CODA_960) { coda_prepare_decode()
1714 switch (dev->devtype->product) { coda_prepare_decode()
1731 if (dev->devtype->product != CODA_DX6) coda_prepare_decode()
1853 if (dev->devtype->product == CODA_7541) { coda_finish_decode()
H A Dcoda-common.c358 const char *coda_product_name(int product) coda_product_name() argument
362 switch (product) { coda_product_name()
370 snprintf(buf, sizeof(buf), "(0x%04x)", product); coda_product_name()
384 strlcpy(cap->card, coda_product_name(ctx->dev->devtype->product), coda_querycap()
1124 if (ctx->dev->devtype->product == CODA_960) set_default_params()
1254 ctx->dev->devtype->product == CODA_7541)) { coda_start_streaming()
1501 if (ctx->dev->devtype->product != CODA_960) { coda_encode_ctrls()
1634 (dev->devtype->product == CODA_DX6 && idx > CODADX6_MAX_INSTANCES)) coda_next_free_instance()
1686 switch (dev->devtype->product) { coda_open()
1786 if (ctx->dev->devtype->product == CODA_DX6) coda_release()
1837 if (dev->devtype->product == CODA_DX6) { coda_hw_init()
1857 if (dev->devtype->product == CODA_960 || coda_hw_init()
1858 dev->devtype->product == CODA_7541) { coda_hw_init()
1871 switch (dev->devtype->product) { coda_hw_init()
1880 if (dev->devtype->product == CODA_960) coda_hw_init()
1885 if (dev->devtype->product != CODA_DX6) coda_hw_init()
2009 coda_product_name(dev->devtype->product)); coda_firmware_request()
2025 .product = CODA_DX6,
2035 .product = CODA_7541,
2046 .product = CODA_960,
2057 .product = CODA_960,
2184 if (dev->devtype->product == CODA_DX6) { coda_probe()
H A Dcoda.h54 enum coda_product product; member in struct:coda_devtype
279 const char *coda_product_name(int product);
/linux-4.1.27/drivers/media/usb/go7007/
H A Dgo7007-loader.c22 u16 product; member in struct:fw_config
47 u16 vendor, product; go7007_loader_probe() local
62 product = le16_to_cpu(usbdev->descriptor.idProduct); go7007_loader_probe()
66 fw_configs[i].product == product) go7007_loader_probe()
/linux-4.1.27/drivers/uwb/
H A Dest.c50 u16 vendor, product; member in struct:uwb_est
237 * then product).
244 * @product: product code from that vendor; same matching rules, use
249 * table is sorted by growing type-event_high-vendor-product, a zero
255 /* FIXME: add bus type to vendor/product code */ uwb_est_register()
256 int uwb_est_register(u8 type, u8 event_high, u16 vendor, u16 product, uwb_est_register() argument
273 && uwb_est[itr].product < product) uwb_est_register()
281 uwb_est[itr].product = product; uwb_est_register()
305 int uwb_est_unregister(u8 type, u8 event_high, u16 vendor, u16 product, uwb_est_unregister() argument
313 .product = product, uwb_est_unregister()
364 est, est->type_event_high, est->vendor, est->product, uwb_est_get_size()
372 est, est->type_event_high, est->vendor, est->product, uwb_est_get_size()
394 est->product, est->entries); uwb_est_get_size()
431 /* FIXME: add vendor/product data */ uwb_est_find_size()
/linux-4.1.27/arch/mn10300/include/asm/
H A Ddiv64.h74 * do an unsigned 32-bit multiply and divide with intermediate 64-bit product
76 * - we use the MDR register to hold the MSW of the product
95 * do a signed 32-bit multiply and divide with intermediate 64-bit product so
97 * - we use the MDR register to hold the MSW of the product
/linux-4.1.27/tools/usb/usbip/libsrc/
H A Dnames.c49 struct product { struct
50 struct product *next;
96 static struct product *products[HASHSZ] = { NULL, };
114 struct product *p; names_product()
228 struct product *p; new_product()
235 p = my_malloc(sizeof(struct product) + strlen(name)); new_product()
406 /* product or subclass spec */ parse()
411 err("Invalid product/subclass spec at line %u", parse()
417 err("Duplicate product spec at line %u product %04x:%04x %s", parse()
419 dbg("line %5u product %04x:%04x %s", linectr, parse()
H A Dusbip_common.c246 uint16_t product) usbip_names_get_product()
250 prod = names_product(vendor, product); usbip_names_get_product()
252 prod = "unknown product"; usbip_names_get_product()
259 snprintf(buff, size, "%s : %s (%04x:%04x)", vend, prod, vendor, product); usbip_names_get_product()
245 usbip_names_get_product(char *buff, size_t size, uint16_t vendor, uint16_t product) usbip_names_get_product() argument
H A Dusbip_common.h133 uint16_t product);
/linux-4.1.27/sound/usb/
H A Dusbaudio.h24 /* handling of USB vendor/product ID pairs as 32-bit numbers */
25 #define USB_ID(vendor, product) (((vendor) << 16) | (product))
H A Dmidi.c1530 * "(product) MIDI (n)" schema because they aren't external MIDI ports,
1540 #define PORT_INFO(vendor, product, num, name_, voices_, flags) \
1541 { .id = USB_ID(vendor, product), \
1544 #define EXTERNAL_PORT(vendor, product, num, name) \
1545 PORT_INFO(vendor, product, num, name, 0, \
1549 #define CONTROL_PORT(vendor, product, num, name) \
1550 PORT_INFO(vendor, product, num, name, 0, \
1553 #define GM_SYNTH_PORT(vendor, product, num, name, voices) \
1554 PORT_INFO(vendor, product, num, name, voices, \
1559 #define ROLAND_SYNTH_PORT(vendor, product, num, name, voices) \
1560 PORT_INFO(vendor, product, num, name, voices, \
1568 #define SOUNDCANVAS_PORT(vendor, product, num, name, voices) \
1569 PORT_INFO(vendor, product, num, name, voices, \
/linux-4.1.27/drivers/staging/rtl8712/
H A Drtl8712_hal.h68 unsigned char signature_0; /*0x12: CE product, 0x92: IT product*/
69 unsigned char signature_1; /*0x87: CE product, 0x81: IT product*/
/linux-4.1.27/drivers/input/misc/
H A Dad714x.h42 unsigned product; member in struct:ad714x_chip
H A Dgpio-beeper.c88 input->id.product = 0x0001; gpio_beeper_probe()
H A Dm68kspkr.c64 input_dev->id.product = 0x0001; m68kspkr_probe()
H A Dpcspkr.c78 pcspkr_dev->id.product = 0x0001; pcspkr_probe()
H A Dad714x.c878 ad714x->product = 0x7142; ad714x_hw_detect()
885 ad714x->product = 0x7143; ad714x_hw_detect()
892 ad714x->product = 0x7147; ad714x_hw_detect()
899 ad714x->product = 0x7148; ad714x_hw_detect()
1056 input[alloc_idx]->id.product = ad714x->product; ad714x_probe()
1088 input[alloc_idx]->id.product = ad714x->product; ad714x_probe()
1123 input[alloc_idx]->id.product = ad714x->product; ad714x_probe()
1153 input[alloc_idx]->id.product = ad714x->product; ad714x_probe()
H A Dixp4xx-beeper.c105 input_dev->id.product = 0x0001; ixp4xx_spkr_probe()
H A Dkeyspan_remote.c11 * and Keyspan, Inc the manufacturers of the Keyspan USB DMR product.
30 /* Vendor and product ids */
495 if (udev->product) { keyspan_probe()
498 strlcat(remote->name, udev->product, sizeof(remote->name)); keyspan_probe()
H A Dgpio_tilt_polled.c145 input->id.product = 0x0001; gpio_tilt_polled_probe()
H A Dpcf8574_keypad.c129 idev->id.product = 0x0001; pcf8574_kp_probe()
H A Dpwm-beeper.c132 beeper->input->id.product = 0x0001; pwm_beeper_probe()
/linux-4.1.27/drivers/usb/serial/
H A Dkl5kusb105.h5 /* vendor/product pairs that are known to contain this chipset */
H A Dti_usb_3410_5052.h28 /* Vendor and product ids */
42 /* Multi-Tech vendor and product ids */
53 /* Abbott Diabetics vendor and product ids */
59 /* Honeywell vendor and product IDs */
H A Dftdi_sio_ids.h2 * vendor/product IDs (VID/PID) of devices using FTDI USB serial converters.
83 /* OpenDCC (www.opendcc.de) product id */
172 * Zolix (www.zolix.com.cb) product ids
177 * NDI (www.ndigital.com) product ids
186 * ChamSys Limited (www.chamsys.co.uk) USB wing/interface product IDs
296 * Active Robots product ids.
327 * Eclo (http://www.eclo.pt/) product IDs.
336 * Teratronik product ids.
359 * microHAM product IDs (http://www.microham.com).
409 * Linx Technologies product ids
418 * Oceanic product ids
423 * SUUNTO product ids
431 /* CCS Inc. ICDU/ICDU40 product ID -
466 * Protego product ids
474 * Sony Ericsson product ids
535 * IBS elektronik product ids (FTDI_VID)
550 * TavIR AVR product ids (FTDI_VID)
555 * TIAO product ids (FTDI_VID)
561 * NovaTech product ids (FTDI_VID)
566 * Synapse Wireless product ids (FTDI_VID)
572 * CustomWare / ShipModul NMEA multiplexers product ids (FTDI_VID)
H A Dgeneric.c29 static __u16 product = 0xffff; variable
34 module_param(product, ushort, 0);
35 MODULE_PARM_DESC(product, "User specified USB idProduct");
63 generic_device_ids[0].idProduct = product; usb_serial_generic_register()
H A Dwhiteheat.h258 __u8 product_id_low; /* product id (low byte) */
259 __u8 product_id_high; /* product id (high byte) */
/linux-4.1.27/arch/mips/include/asm/sgi/
H A Dgio.h42 * bits 0:6 the product ID; ranges from 0x00 to 0x7F.
45 * bits 8:15 manufacturer version for the product.
/linux-4.1.27/drivers/zorro/
H A Dnames.c69 /* Couldn't find either the manufacturer nor the product */ zorro_name_device()
84 /* Ok, found the manufacturer, but unknown product */ zorro_name_device()
/linux-4.1.27/drivers/power/
H A Disp1704_charger.c365 int product; isp1704_test_ulpi() local
381 /* Verify the product and vendor id matches */ isp1704_test_ulpi()
387 product = isp1704_read(isp, ULPI_PRODUCT_ID_LOW); isp1704_test_ulpi()
388 product |= isp1704_read(isp, ULPI_PRODUCT_ID_HIGH) << 8; isp1704_test_ulpi()
391 if (product == isp170x_id[i]) { isp1704_test_ulpi()
392 sprintf(isp->model, "isp%x", product); isp1704_test_ulpi()
393 return product; isp1704_test_ulpi()
397 dev_err(isp->dev, "product id %x not matching known ids", product); isp1704_test_ulpi()
484 dev_info(isp->dev, "registered with product id %s\n", isp->model); isp1704_charger_probe()
/linux-4.1.27/drivers/platform/x86/
H A Dacerhdf.c110 MODULE_PARM_DESC(force_product, "Force BIOS product and omit BIOS check");
136 const char *product; member in struct:bios_settings
620 char const *vendor, *version, *product; acerhdf_check_hardware() local
626 product = dmi_get_system_info(DMI_PRODUCT_NAME); acerhdf_check_hardware()
628 if (!vendor || !version || !product) { acerhdf_check_hardware()
642 product = force_product; acerhdf_check_hardware()
643 pr_info("forcing BIOS product: %s\n", product); acerhdf_check_hardware()
648 pr_info("BIOS info: %s %s, product: %s\n", acerhdf_check_hardware()
649 vendor, version, product); acerhdf_check_hardware()
654 * check if actual hardware BIOS vendor, product and version acerhdf_check_hardware()
658 str_starts_with(product, bt->product) && acerhdf_check_hardware()
667 vendor, product, version); acerhdf_check_hardware()
/linux-4.1.27/drivers/input/touchscreen/
H A Dpenmount.c222 input_dev->id.product = 0; pm_connect()
234 input_dev->id.product = 0x9000; pm_connect()
241 input_dev->id.product = 0x6000; pm_connect()
248 input_dev->id.product = 0x3000; pm_connect()
256 input_dev->id.product = 0x6250; pm_connect()
H A Dtouchright.c124 input_dev->id.product = 0; tr_connect()
H A Dtsc40.c101 input_dev->id.product = 40; tsc_connect()
H A Dfujitsu_ts.c122 input_dev->id.product = 0; fujitsu_connect()
H A Dtps6507x-ts.c278 input_dev->id.product = init_data->product; tps6507x_ts_probe()
H A Dtouchit213.c162 input_dev->id.product = 0; touchit213_connect()
H A Dtouchwin.c131 input_dev->id.product = 0; tw_connect()
H A Ddynapro.c134 input_dev->id.product = 0; dynapro_connect()
H A Dgunze.c134 input_dev->id.product = 0x0051; gunze_connect()
H A Dhampshire.c133 input_dev->id.product = 0; hampshire_connect()
H A Dinexio.c137 input_dev->id.product = 0; inexio_connect()
H A Dmk712.c182 mk712_dev->id.product = 0x0001; mk712_init()
H A Dmtouch.c150 input_dev->id.product = 0; mtouch_connect()
H A Dpcap_ts.c169 input_dev->id.product = 0x0002; pcap_ts_probe()
/linux-4.1.27/drivers/usb/atm/
H A Dxusbatm.c37 XUSBATM_PARM(product, unsigned short, ushort, "USB device product");
102 usb_dbg(usbatm, "%s: binding driver %d: vendor %04x product %04x" xusbatm_bind()
104 __func__, drv_ix, vendor[drv_ix], product[drv_ix], xusbatm_bind()
204 xusbatm_usb_ids[i].idProduct = product[i]; xusbatm_init()
/linux-4.1.27/drivers/hid/
H A Dhid-samsung.c136 if (USB_DEVICE_ID_SAMSUNG_IR_REMOTE == hdev->product) samsung_report_fixup()
147 if (USB_DEVICE_ID_SAMSUNG_WIRELESS_KBD_MOUSE == hdev->product) samsung_input_mapping()
166 if (USB_DEVICE_ID_SAMSUNG_IR_REMOTE == hdev->product) { samsung_probe()
H A Dhid-magicmouse.c186 if (input->id.product == USB_DEVICE_ID_APPLE_MAGICMOUSE) { magicmouse_emit_touch()
272 if (input->id.product == USB_DEVICE_ID_APPLE_MAGICMOUSE) magicmouse_emit_touch()
350 if (input->id.product == USB_DEVICE_ID_APPLE_MAGICMOUSE) { magicmouse_raw_event()
369 if (input->id.product == USB_DEVICE_ID_APPLE_MAGICMOUSE) { magicmouse_setup_input()
419 if (input->id.product == USB_DEVICE_ID_APPLE_MAGICMOUSE) { magicmouse_setup_input()
467 if (hi->input->id.product == USB_DEVICE_ID_APPLE_MAGICTRACKPAD && magicmouse_input_mapping()
526 if (id->product == USB_DEVICE_ID_APPLE_MAGICMOUSE) magicmouse_probe()
H A Dhid-picolcd_cir.c124 rdev->input_id.product = data->hdev->product; picolcd_init_cir()
H A Dhid-holtek-mouse.c43 switch (hdev->product) { holtek_mouse_report_fixup()
H A Dhid-core.c708 (hid->product == USB_DEVICE_ID_MS_TYPE_COVER_3 || hid_scan_collection()
709 hid->product == USB_DEVICE_ID_MS_TYPE_COVER_3_JP) && hid_scan_collection()
1521 (id->product == HID_ANY_ID || id->product == hdev->product); hid_match_one_id()
2039 __u32 bus, vendor, product; store_new_id() local
2044 &bus, &vendor, &product, &driver_data); store_new_id()
2055 dynid->id.product = product; store_new_id()
2187 hdev->bus, hdev->group, hdev->vendor, hdev->product); modalias_show()
2204 hdev->bus, hdev->vendor, hdev->product)) hid_uevent()
2217 hdev->bus, hdev->group, hdev->vendor, hdev->product)) hid_uevent()
2489 if (hdev->product >= USB_DEVICE_ID_CODEMERCS_IOW_FIRST && hid_ignore()
2490 hdev->product <= USB_DEVICE_ID_CODEMERCS_IOW_LAST) hid_ignore()
2494 if (hdev->product >= USB_DEVICE_ID_LOGITECH_HARMONY_FIRST && hid_ignore()
2495 hdev->product <= USB_DEVICE_ID_LOGITECH_HARMONY_LAST) hid_ignore()
2504 if (hdev->product == USB_DEVICE_ID_LOGITECH_AUDIOHUB && hid_ignore()
2509 if (hdev->product >= USB_DEVICE_ID_SOUNDGRAPH_IMON_FIRST && hid_ignore()
2510 hdev->product <= USB_DEVICE_ID_SOUNDGRAPH_IMON_LAST) hid_ignore()
2514 if (hdev->product >= USB_DEVICE_ID_HANWANG_TABLET_FIRST && hid_ignore()
2515 hdev->product <= USB_DEVICE_ID_HANWANG_TABLET_LAST) hid_ignore()
2519 if (hdev->product == USB_DEVICE_ID_JESS_YUREX && hid_ignore()
2525 if ((hdev->product >= USB_DEVICE_ID_VELLEMAN_K8055_FIRST && hid_ignore()
2526 hdev->product <= USB_DEVICE_ID_VELLEMAN_K8055_LAST) || hid_ignore()
2527 (hdev->product >= USB_DEVICE_ID_VELLEMAN_K8061_FIRST && hid_ignore()
2528 hdev->product <= USB_DEVICE_ID_VELLEMAN_K8061_LAST)) hid_ignore()
2535 * ignore the hid. Check the name, bus, product and ignore hid_ignore()
2538 if (hdev->product == USB_DEVICE_ID_ATMEL_V_USB && hid_ignore()
2599 hdev->vendor, hdev->product, atomic_inc_return(&id)); hid_add_device()
H A Duhid.c379 __u32 product; member in struct:uhid_create_req_compat
428 event->u.create.product = compat->product; uhid_event_from_user()
492 hid->product = ev->u.create2.product; uhid_dev_create2()
538 ev->u.create2.product = orig.product; uhid_dev_create()
H A Dhid-lenovo.c137 switch (hdev->product) { lenovo_input_mapping()
159 switch (hdev->product) { lenovo_send_cmd_cptkbd()
275 if (unlikely(hdev->product == USB_DEVICE_ID_LENOVO_CUSBKBD lenovo_raw_event()
645 if (hdev->product == USB_DEVICE_ID_LENOVO_CUSBKBD lenovo_probe_cptkbd()
702 switch (hdev->product) { lenovo_probe()
752 switch (hdev->product) { lenovo_remove()
H A Dhid-hyperv.c28 unsigned short product; member in struct:hv_input_dev_info
529 hid_dev->product = input_dev->hid_dev_info.product; mousevsc_probe()
H A Dhid-apple.c195 if (hid->product >= USB_DEVICE_ID_APPLE_WELLSPRING4_ANSI && hidinput_apple_event()
196 hid->product <= USB_DEVICE_ID_APPLE_WELLSPRING4A_JIS) hidinput_apple_event()
198 else if (hid->product < 0x21d || hid->product >= 0x300) hidinput_apple_event()
H A Dhid-dr.c240 switch (hdev->product) { dr_report_fixup()
269 switch (hdev->product) { dr_probe()
H A Dhid-wiimote-modules.c503 wdata->accel->id.product = wdata->hdev->product; wiimod_accel_probe()
755 wdata->ir->id.product = wdata->hdev->product; wiimod_ir_probe()
950 wdata->extension.input->id.product = wdata->hdev->product; wiimod_nunchuk_probe()
1225 wdata->extension.input->id.product = wdata->hdev->product; wiimod_classic_probe()
1503 wdata->extension.input->id.product = wdata->hdev->product; wiimod_bboard_probe()
1891 wdata->extension.input->id.product = wdata->hdev->product; wiimod_pro_probe()
2136 wdata->mp->id.product = wdata->hdev->product; wiimod_mp_probe()
H A Dhid-axff.c98 if (field_count < 4 && hid->product != 0xf705) { axff_init()
H A Dhid-lgff.c142 dev->id.product == devices[i].idProduct) { lgff_init()
H A Dhid-picolcd_core.c236 if (hdev->product == USB_DEVICE_ID_PICOLCD_BOOTLOADER) picolcd_reset()
451 idev->id.product = hdev->product; picolcd_init_keys()
561 if (hdev->product == USB_DEVICE_ID_PICOLCD_BOOTLOADER) picolcd_probe()
/linux-4.1.27/include/linux/
H A Dsdb.h45 struct sdb_product product; /* 0x18..0x3f */ member in struct:sdb_component
100 * just provide product information for an aggregate device
104 struct sdb_product product; /* 0x08-0x3f */ member in struct:sdb_integration
H A Dmod_devicetable.h63 * @idProduct: Vendor-assigned product ID.
64 * @bcdDevice_lo: Low end of range of vendor-assigned product version numbers.
65 * This is also used to identify individual product versions, for
67 * @bcdDevice_hi: High end of version number range. The range of product
105 /* Used for product specific matches; range is inclusive */
150 __u32 product; member in struct:hid_device_id
307 __u16 product; member in struct:input_device_id
H A Dhdmi.h186 char product[16]; member in struct:hdmi_spd_infoframe
191 const char *vendor, const char *product);
/linux-4.1.27/drivers/hid/usbhid/
H A Dhid-quirks.c162 * @idProduct: the 16-bit USB product ID, in native byteorder
197 * @idProduct: the 16-bit USB product ID, in native byteorder
315 * @idProduct: the 16-bit USB product ID, in native byteorder
318 * Given a USB vendor ID and product ID, return a pointer to
344 * @idProduct: the 16-bit USB product ID, in native byteorder
347 * Given a USB vendor ID and product ID, return any quirks associated
H A Dusbmouse.c160 if (dev->product) { usb_mouse_probe()
163 strlcat(mouse->name, dev->product, sizeof(mouse->name)); usb_mouse_probe()
/linux-4.1.27/scripts/mod/
H A Ddevicetable-offsets.c28 DEVID_FIELD(hid_device_id, product); main()
95 DEVID_FIELD(input_device_id, product); main()
/linux-4.1.27/drivers/macintosh/
H A Dvia-pmu-event.c45 pmu_input_dev->id.product = 0x0001; via_pmu_event_init()
H A Dmac_hid.c46 mac_hid_emumouse_dev->id.product = 0x0001; mac_hid_create_emumouse()
/linux-4.1.27/drivers/misc/mic/card/
H A Dmic_x100.h20 * the Intel product codenamed: Knights Corner, and are not backward
H A Dmic_virtio.h20 * the Intel product codenamed: Knights Corner, and are not backward
H A Dmic_debugfs.c20 * the Intel product codenamed: Knights Corner, and are not backward
H A Dmic_device.h20 * the Intel product codenamed: Knights Corner, and are not backward
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8192se/
H A Dfw.h79 /* 0x12: CE product, 0x92: IT product */
81 /* 0x87: CE product, 0x81: IT product */
/linux-4.1.27/drivers/staging/wlan-ng/
H A Dp80211req.h43 * Intersil Corporation as part of PRISM(R) chipset product development.
H A Dp80211msg.h43 * Intersil Corporation as part of PRISM(R) chipset product development.
H A Dp80211ioctl.h43 * Intersil Corporation as part of PRISM(R) chipset product development.
H A Dp80211meta.h43 * Intersil Corporation as part of PRISM(R) chipset product development.
H A Dp80211conv.h43 * Intersil Corporation as part of PRISM(R) chipset product development.
H A Dp80211metadef.h42 * Intersil Corporation as part of PRISM(R) chipset product development.
H A Dprism2mgmt.h43 * Intersil Corporation as part of PRISM(R) chipset product development.
/linux-4.1.27/arch/x86/platform/ts5500/
H A Dts5500.c34 #define TS5500_PRODUCT_CODE 0x60 /* TS-5500 product code */
35 #define TS5400_PRODUCT_CODE 0x40 /* TS-5400 product code */
71 * @id: Board product ID.
134 pr_err("ts5500: unknown product code 0x%x\n", sbc->id); ts5500_detect_config()
/linux-4.1.27/arch/mips/include/asm/mach-pmcs-msp71xx/
H A Dmsp_int.h29 * The PMC-Sierra MSP product line has at least two different interrupt
/linux-4.1.27/drivers/media/dvb-frontends/
H A Datbm8830.h34 /* product type */
H A Dlgs8gxx.h42 /* product type */
/linux-4.1.27/include/uapi/linux/
H A Dhidraw.h29 __s16 product; member in struct:hidraw_devinfo
H A Duhid.h51 __u32 product; member in struct:uhid_create2_req
137 __u32 product; member in struct:uhid_create_req
H A Dvirtio_input.h53 __u16 product; member in struct:virtio_input_devids
H A Dzorro.h46 * GVP identifies most of its products through the 'extended product code'
/linux-4.1.27/arch/ia64/sn/kernel/sn2/
H A Dtimer_interrupt.c19 * other software, or any other product whatsoever.
/linux-4.1.27/sound/drivers/pcsp/
H A Dpcsp_input.c93 input_dev->id.product = 0x0001; pcspkr_input_init()
/linux-4.1.27/tools/usb/usbip/src/
H A Dusbip_list.c155 const char *product, bool parsable) print_device()
158 printf("busid=%s#usbid=%.4s:%.4s#", busid, vendor, product); print_device()
160 printf(" - busid %s (%.4s:%.4s)\n", busid, vendor, product); print_device()
217 /* Get product name. */ udev_list_entry_foreach()
154 print_device(const char *busid, const char *vendor, const char *product, bool parsable) print_device() argument
/linux-4.1.27/net/bluetooth/hidp/
H A Dcore.c82 ci->product = session->input->id.product; hidp_copy_session()
90 ci->product = session->hid->product; hidp_copy_session()
668 input->id.product = req->product; hidp_setup_input()
772 hid->product = req->product; hidp_setup_hid()
1040 unsigned int vendor, product; hidp_session_start_sync() local
1044 product = session->hid->product; hidp_session_start_sync()
1047 product = session->input->id.product; hidp_session_start_sync()
1050 product = 0x0000; hidp_session_start_sync()
1054 "khidpd_%04x%04x", vendor, product); hidp_session_start_sync()
H A Dhidp.h98 __u16 product; member in struct:hidp_connadd_req
115 __u16 product; member in struct:hidp_conninfo
H A Dsock.c135 __u16 product; member in struct:compat_hidp_connadd_req
181 put_user(ca.product, &uca->product) || hidp_sock_compat_ioctl()
/linux-4.1.27/drivers/usb/misc/
H A Dchaoskey.c87 char *name; /* product + serial */
113 usb_dbg(interface, "probe %s-%s", udev->product, udev->serial); chaoskey_probe()
154 /* Construct a name using the product and serial values. Each chaoskey_probe()
158 if (udev->product && udev->serial) { chaoskey_probe()
159 dev->name = kmalloc(strlen(udev->product) + 1 + chaoskey_probe()
167 strcpy(dev->name, udev->product); chaoskey_probe()
/linux-4.1.27/drivers/usb/gadget/legacy/
H A Dcdc2.c30 /* Thanks to NetChip Technologies for donating this product ID.
53 /* Vendor and product id can be overridden by module parameters. */
H A Dmass_storage.c41 * Thanks to NetChip Technologies for donating this product ID.
61 /* Vendor and product id can be overridden by module parameters. */
H A Dncm.c37 /* Thanks to NetChip Technologies for donating this product ID.
59 /* Vendor and product id defaults change according to what configs
H A Dprinter.c40 /* Thanks to NetChip Technologies for donating this product ID.
45 /* Some systems will want different product identifiers published in the
H A Dserial.c34 /* Thanks to NetChip Technologies for donating this product ID.
245 * but neither of these product IDs was defined that way. init()
H A Dether.c46 * endpoint descriptors, and product/vendor IDs, are relevant; no control
53 * specific product/vendor IDs. So we do that, making it easier to use
116 /* Thanks to NetChip Technologies for donating this product ID.
161 /* Vendor and product id defaults change according to what configs
H A Daudio.c117 /* Thanks to Linux Foundation for donating this product ID. */
140 /* Vendor and product id defaults change according to what configs
H A Dacm_ms.c51 /* Vendor and product id can be overridden by module parameters. */
H A Dgmidi.c76 /* Thanks to Grey Innovation for donating this product ID.
H A Dhid.c61 /* Vendor and product id can be overridden by module parameters. */
/linux-4.1.27/fs/xfs/
H A Dxfs_rtalloc.h45 xfs_extlen_t prod, /* extent product factor */
79 * Translate this to a fraction of the rtextents, and return the product
/linux-4.1.27/include/linux/platform_data/
H A Dvideo-msm_fb.h84 /* fixup the mfr name, product id */
92 unsigned product_id; /* mfr id in top 16 bits, product id
/linux-4.1.27/drivers/media/radio/
H A Dradio-raremono.c36 * http://www.raremono.jp/product/484.html/
42 * Sadly the firmware used in this product hides lots of goodies since the
54 * The vendor and product IDs (and in fact all other lsusb information as
57 * designer of this product never bothered to change the USB IDs.
H A Dradio-keene.c323 * For reference: the product name of the AudioHub is usb_keene_probe()
326 if (dev->product && strcmp(dev->product, "B-LINK USB Audio ")) usb_keene_probe()
/linux-4.1.27/drivers/media/rc/keymaps/
H A Drc-budget-ci-old.c19 * Hauppauge (from NOVA-CI-s box product)
/linux-4.1.27/drivers/staging/gdm72xx/
H A Dusb_ids.h20 /*You can replace product-ID as yours.*/
/linux-4.1.27/drivers/input/keyboard/
H A Dopencores-kbd.c82 input->id.product = 0x0001; opencores_kbd_probe()
H A Dadp5520-keys.c114 input->id.product = 0x5520; adp5520_keys_probe()
H A Damikbd.c228 dev->id.product = 0x0001; amikbd_probe()
H A Datakbd.c238 atakbd_dev->id.product = 0x0001; atakbd_init()
H A Dclps711x-keypad.c148 poll_dev->input->id.product = 0x0001; clps711x_keypad_probe()
H A Dnewtonkbd.c104 input_dev->id.product = 0x0001; nkbd_connect()
H A Dstowaway.c108 input_dev->id.product = 0x0001; skbd_connect()
H A Dxtkbd.c106 input_dev->id.product = 0x0001; xtkbd_connect()
/linux-4.1.27/drivers/input/mouse/
H A Drpcmouse.c78 rpcmouse_dev->id.product = 0x0001; rpcmouse_init()
H A Damimouse.c110 dev->id.product = 0x0002; amimouse_probe()
H A Datarimouse.c132 atamouse_dev->id.product = 0x0002; atamouse_init()
H A Dinport.c160 inport_dev->id.product = 0x0001; inport_init()
H A Dlogibm.c153 logibm_dev->id.product = 0x0001; logibm_init()
H A Dpc110pad.c141 pc110pad_dev->id.product = 0x0001; pc110pad_init()
/linux-4.1.27/arch/mips/include/asm/netlogic/xlr/
H A Dxlr.h50 /* The XLS product line has chip versions 0x[48c]? */ nlm_chip_is_xls()
/linux-4.1.27/arch/cris/boot/rescue/
H A Dhead_v10.S5 * the partition table was generated by the product builder
81 ;; host loader can be used to load a rescued product as well as
307 move.d RAM_INIT_MAGIC, $r8 ; Tell next product that DRAM is
319 move.d RAM_INIT_MAGIC, $r8 ; Tell next product that DRAM is
H A Dkimagerescue.S71 ;; product and put the sp at the top for now.
/linux-4.1.27/include/crypto/
H A Db128ops.h34 ALTERNATIVELY, provided that this notice is retained in full, this product
/linux-4.1.27/drivers/net/wireless/ath/ath9k/
H A Dhtc_drv_gpio.c182 void ath9k_htc_init_btcoex(struct ath9k_htc_priv *priv, char *product) ath9k_htc_init_btcoex() argument
196 if (product && strncmp(product, ATH_HTC_BTCOEX_PRODUCT_ID, 5) == 0) { ath9k_htc_init_btcoex()
H A Dhtc.h428 void ath9k_htc_init_btcoex(struct ath9k_htc_priv *priv, char *product);
432 static inline void ath9k_htc_init_btcoex(struct ath9k_htc_priv *priv, char *product) ath9k_htc_init_btcoex() argument
629 u16 devid, char *product, u32 drv_info);
H A Dhtc_hst.h226 struct device *dev, u16 devid, char *product,
/linux-4.1.27/drivers/usb/phy/
H A Dphy-ulpi.c39 #define ULPI_ID(vendor, product) (((vendor) << 16) | (product))
195 pr_info("ULPI transceiver vendor/product ID 0x%04x/0x%04x\n", vid, pid); ulpi_init()
/linux-4.1.27/arch/sparc/kernel/
H A Dvisemul.c33 /* 000110001 - 8-by-16-bit partitoned product */
36 /* 000110011 - 8-by-16-bit upper alpha partitioned product */
39 /* 000110101 - 8-by-16-bit lower alpha partitioned product */
42 /* 000110110 - upper 8-by-16-bit partitioned product */
45 /* 000110111 - lower 8-by-16-bit partitioned product */
48 /* 000111000 - upper 8-by-16-bit partitioned product */
51 /* 000111001 - lower unsigned 8-by-16-bit partitioned product */
/linux-4.1.27/arch/nios2/kernel/
H A Dinsnemu.S369 * A "product" is the number that one gets by summing a "multiplicand"
375 * they are faster. To compute the lower half of a product (pppp below)
376 * one shifts the product left before adding in each of the partial
379 * To compute the upper half of a product (PPPP below), one adds in the
381 * the add by a right shift of the product.
398 * opcodes is the value of the partial product associated with the sign
405 * opcodes is the value of the partial product associated with the sign
/linux-4.1.27/drivers/video/
H A Dhdmi.c158 * @product: product string
163 const char *vendor, const char *product) hdmi_spd_infoframe_init()
172 strncpy(frame->product, product, sizeof(frame->product)); hdmi_spd_infoframe_init()
214 memcpy(ptr + 8, frame->product, sizeof(frame->product)); hdmi_spd_infoframe_pack()
752 strncpy(buf, frame->product, 16); hdmi_spd_infoframe_log()
753 hdmi_log(" product: %s\n", buf); hdmi_spd_infoframe_log()
162 hdmi_spd_infoframe_init(struct hdmi_spd_infoframe *frame, const char *vendor, const char *product) hdmi_spd_infoframe_init() argument
/linux-4.1.27/arch/mips/ar7/
H A Dclock.c175 int product; tnetd7300_get_clock() local
206 product = (mul & 1) ? tnetd7300_get_clock()
209 return product / divisor; tnetd7300_get_clock()
/linux-4.1.27/drivers/hwmon/
H A Dina2xx.c6 * Datasheet: http://www.ti.com/product/ina219
10 * Datasheet: http://www.ti.com/product/ina220
14 * Datasheet: http://www.ti.com/product/ina226
18 * Datasheet: http://www.ti.com/product/ina230
H A Demc2103.c660 int manufacturer, product; emc2103_detect() local
669 product = i2c_smbus_read_byte_data(new_client, REG_PRODUCT_ID); emc2103_detect()
670 if ((product != 0x24) && (product != 0x26)) emc2103_detect()
H A Dg760a.c8 * http://www.gmt.com.tw/product/datasheet/EDS-760A.pdf
/linux-4.1.27/drivers/staging/ste_rmi4/
H A Dsynaptics_i2c_rmi4.c125 * @product_props: product properties information
126 * @product_info: product info array
130 * @product_id_string: product id for the device
335 * 11 = reserved for product use. synpatics_rmi4_touchpad_report()
790 * Function $01 will be used to query the product properties, synaptics_rmi4_i2c_query_device()
791 * and product ID so we had to read the PDT above first to get synaptics_rmi4_i2c_query_device()
792 * the Fn $01 query address and prior to filling in the product synaptics_rmi4_i2c_query_device()
811 * get manufacturer id, product_props, product info, synaptics_rmi4_i2c_query_device()
812 * date code, tester id, serial num and product id (name) synaptics_rmi4_i2c_query_device()
/linux-4.1.27/arch/xtensa/include/asm/
H A Dregs.h17 * other software, or any other product whatsoever.
/linux-4.1.27/arch/mips/include/asm/
H A Dbootinfo.h19 * The MACH_ IDs are sort of equivalent to PCI product IDs. As such the
/linux-4.1.27/drivers/usb/core/
H A Dotg_whitelist.h103 /* OTG MESSAGE: report errors here, customize to match your product */ is_targeted()
/linux-4.1.27/drivers/media/common/siano/
H A Dsmsir.c85 dev->input_id.product = le16_to_cpu(dev->udev->descriptor.idProduct); sms_ir_init()
/linux-4.1.27/arch/powerpc/platforms/cell/
H A Dcbe_powerbutton.c73 dev->id.product = 0x02; cbe_powerbutton_init()
/linux-4.1.27/arch/s390/appldata/
H A Dappldata_net_sum.c25 * the structure version (product ID, see appldata_base.c) needs to be changed
H A Dappldata_mem.c28 * the structure version (product ID, see appldata_base.c) needs to be changed
H A Dappldata_os.c33 * the structure version (product ID, see appldata_base.c) needs to be changed
/linux-4.1.27/arch/cris/boot/compressed/
H A Dhead_v10.S53 ;; product and put the sp at the top for now.
/linux-4.1.27/arch/ia64/include/asm/
H A Dmachvec_sn2.h17 * other software, or any other product whatsoever.
/linux-4.1.27/arch/arm/mach-s3c24xx/
H A Dmach-at2440evb.c8 * For product information, visit http://www.arm.com/
/linux-4.1.27/lib/mpi/
H A Dmpih-mul.c182 /* Add/copy product H. */ mul_n()
187 /* Add product M (if NEGFLG M is a negative number) */ mul_n()
304 /* Add/copy product H */ mpih_sqr_n()
309 /* Add product M (if NEGFLG M is a negative number). */ mpih_sqr_n()
/linux-4.1.27/samples/hidraw/
H A Dhid-example.c109 printf("\tproduct: 0x%04hx\n", info.product); main()
/linux-4.1.27/drivers/xen/xen-pciback/
H A Dconf_space_capability.c70 /* Disallow writes to the vital product data */ vpd_address_write()
/linux-4.1.27/drivers/mfd/
H A Dab3100-otp.c38 * @paf product activation flag, indicates whether this is a real
39 * product (paf true) or a lab board etc (paf false)
/linux-4.1.27/drivers/misc/ibmasm/
H A Dremote.c226 mouse_dev->id.product = pdev->device; ibmasm_init_remote_input_dev()
239 keybd_dev->id.product = pdev->device; ibmasm_init_remote_input_dev()
/linux-4.1.27/drivers/scsi/mpt2sas/mpi/
H A Dmpi2_raid.h28 * Added product-specific range to RAID Action values.
197 * The following define can be customized for the targeted product.
H A Dmpi2.h33 * product specific codes up to 0xEFFF.
62 * Added defines for product-specific range of message
546 /* beginning of product-specific range */
548 /* end of product-specific range */
/linux-4.1.27/drivers/scsi/mpt3sas/mpi/
H A Dmpi2_raid.h28 * Added product-specific range to RAID Action values.
194 *The following define can be customized for the targeted product.
/linux-4.1.27/drivers/fmc/
H A Dfmc-sdb.c181 p = &c->product; __fmc_show_sdb_tree()
267 p = &c->product; fmc_find_sdb_device()
/linux-4.1.27/drivers/input/joystick/
H A Dwalkera0701.c250 /* TODO what id vendor/product/version ? */ walkera0701_connect()
252 w->input_dev->id.product = 0x0001; walkera0701_connect()
H A Damijoy.c133 amijoy_dev[i]->id.product = 0x0003; amijoy_init()
H A Dcobra.c209 input_dev->id.product = 0x0008; cobra_connect()
H A Dmagellan.c166 input_dev->id.product = 0x0001; magellan_connect()
H A Dstinger.c152 input_dev->id.product = 0x0001; stinger_connect()
H A Dwarrior.c158 input_dev->id.product = 0x0001; warrior_connect()
/linux-4.1.27/drivers/input/tablet/
H A Dacecad.c182 if (dev->product) { usb_acecad_probe()
185 strlcat(acecad->name, dev->product, sizeof(acecad->name)); usb_acecad_probe()
/linux-4.1.27/drivers/bluetooth/
H A Dbtbcm.c232 BT_ERR("%s: BCM: Read USB product info failed (%ld)", btbcm_read_usb_product()
238 BT_ERR("%s: BCM: USB product length mismatch", hdev->name); btbcm_read_usb_product()
/linux-4.1.27/drivers/usb/storage/
H A Donetouch.c219 if (udev->product) { onetouch_connect_input()
222 strlcat(onetouch->name, udev->product, sizeof(onetouch->name)); onetouch_connect_input()
H A Doption_ms.c144 * because some vendor/product IDs are ambiguous option_ms_init()
/linux-4.1.27/include/math-emu/
H A Dop-1.h131 were (bit B), we know that the msb of the of the product is \
143 were (bit B), we know that the msb of the of the product is \
H A Dop-2.h260 were (bit B), we know that the msb of the of the product is \
304 were (bit B), we know that the msb of the of the product is \
321 were (bit B), we know that the msb of the of the product is \
/linux-4.1.27/arch/m68k/lib/
H A Dudivsi3.S116 the operand ranges, this might give a 33 bit product. If this product is
/linux-4.1.27/arch/arm/mach-rpc/
H A Decard.c70 unsigned short product; member in struct:expcard_blacklist
632 ec->cid.manufacturer, ec->cid.product); ecard_prints()
800 return sprintf(buf, "%u\n", ec->cid.product); ecard_show_device()
914 ec->cid.product = ecard_getu16(cid.r_prod); ecard_probe()
935 blacklist[i].product == ec->cid.product) { ecard_probe()
1025 ec->cid.product == ids[i].product) ecard_match_device()
/linux-4.1.27/arch/arm/include/asm/
H A Decard.h90 unsigned short product; member in struct:ecard_id
95 unsigned short product; /* Product code */ member in struct:in_ecid
/linux-4.1.27/sound/firewire/fireworks/
H A Dfireworks.c59 /* unknown as product */
66 /* unknown as product */
/linux-4.1.27/drivers/media/rc/
H A Dimon.c137 u16 product; /* usb product ID */ member in struct:imon_context
658 * is an RF version is to look at the product description string. (Which
723 if (ictx->product == 0xffdc) { send_set_imon_clock()
1338 if (ictx->product != 0xffdc && (buf[0] & 0x01) && len == 5) { imon_mouse_event()
1343 } else if (ictx->product == 0xffdc && (buf[0] & 0x40) && imon_mouse_event()
1357 } else if (ictx->product == 0xffdc && (buf[0] == 0x68)) { imon_mouse_event()
1418 if (ictx->product != 0xffdc) { imon_pad_to_keys()
1907 switch (ictx->product) { imon_set_display_type()
1961 "iMON Remote (%04x:%04x)", ictx->vendor, ictx->product); imon_init_rdev()
1984 if (ictx->product == 0xffdc) { imon_init_rdev()
2021 ictx->vendor, ictx->product); imon_init_idev()
2070 ictx->vendor, ictx->product); imon_init_touch()
2237 ictx->product = le16_to_cpu(ictx->usbdev_intf0->descriptor.idProduct); imon_init_intf0()
2407 u16 vendor, product; imon_probe() local
2413 product = le16_to_cpu(usbdev->descriptor.idProduct); imon_probe()
2416 __func__, vendor, product, ifnum); imon_probe()
2455 if (product == 0xffdc && ictx->rf_device) { imon_probe()
2470 "usb<%d:%d> initialized\n", vendor, product, ifnum, imon_probe()
H A Dati_remote.c116 #define NAME_BUFSIZE 80 /* size of product name, path buffers */
171 if (udev->manufacturer && udev->product) { get_medion_keymap()
175 && !strcmp(udev->product, "USB Receiver")) get_medion_keymap()
179 && !strcmp(udev->product, "RF receiver")) get_medion_keymap()
184 && !strcmp(udev->product, "USB Receiver")) get_medion_keymap()
873 if (udev->product) ati_remote_probe()
875 "%s %s", ati_remote->rc_name, udev->product); ati_remote_probe()
H A Dgpio-ir-recv.c143 rcdev->input_id.product = 0x0001; gpio_ir_recv_probe()
/linux-4.1.27/drivers/iio/imu/inv_mpu6050/
H A Dinv_mpu_acpi.c160 /* Add more matched product processing here */ inv_mpu_acpi_create_mux_client()
/linux-4.1.27/drivers/staging/comedi/drivers/
H A Ddt9812.c696 u16 product; dt9812_reset_device() local
731 dev_err(dev->class_dev, "failed to read product id\n"); dt9812_reset_device()
734 product = le16_to_cpu(tmp16); dt9812_reset_device()
752 vendor, product, devpriv->device, serial); dt9812_reset_device()
/linux-4.1.27/drivers/staging/dgnc/
H A Ddgnc_mgmt.c19 * Neo and ClassicBoard based product lines.
/linux-4.1.27/drivers/staging/ft1000/ft1000-usb/
H A Dft1000_usb.c31 #define PRODUCT_ID 0x11 /* fake product id */
/linux-4.1.27/arch/x86/kernel/cpu/
H A Dvmware.c92 * While checking the dmi string information, just checking the product
/linux-4.1.27/arch/x86/math-emu/
H A Dpoly.h58 The answer is the ms word of the product. */
/linux-4.1.27/arch/powerpc/boot/
H A Ddiv64.S46 subfc r6,r10,r6 # take the product from the divisor,
/linux-4.1.27/arch/m68k/math-emu/
H A Dfp_emu.h19 * ALTERNATIVELY, this product may be distributed under the terms of
/linux-4.1.27/kernel/
H A Dkcmp.c25 * permute its bits even more (the odd multiplier guarantees that the product
/linux-4.1.27/sound/firewire/bebob/
H A Dbebob_proc.c27 /* may not used in product
/linux-4.1.27/drivers/media/pci/cx23885/
H A Dcx23885-input.c368 rc->input_id.product = dev->pci->subsystem_device; cx23885_input_init()
371 rc->input_id.product = dev->pci->device; cx23885_input_init()

Completed in 5755 milliseconds

1234