Home
last modified time | relevance | path

Searched refs:bcdDevice (Results 1 – 25 of 45) sorted by relevance

12

/drivers/usb/misc/
Dusblcd.c165 u16 bcdDevice; in lcd_ioctl() local
174 bcdDevice = le16_to_cpu((dev->udev)->descriptor.bcdDevice); in lcd_ioctl()
176 (bcdDevice & 0xF000)>>12, in lcd_ioctl()
177 (bcdDevice & 0xF00)>>8, in lcd_ioctl()
178 (bcdDevice & 0xF0)>>4, in lcd_ioctl()
179 (bcdDevice & 0xF)); in lcd_ioctl()
376 i = le16_to_cpu(dev->udev->descriptor.bcdDevice); in lcd_probe()
/drivers/usb/storage/
Dusb.c280 u16 bcdDevice = le16_to_cpu(us->pusb_dev->descriptor.bcdDevice); in fill_inquiry_response() local
288 data[32] = 0x30 + ((bcdDevice>>12) & 0x0F); in fill_inquiry_response()
289 data[33] = 0x30 + ((bcdDevice>>8) & 0x0F); in fill_inquiry_response()
290 data[34] = 0x30 + ((bcdDevice>>4) & 0x0F); in fill_inquiry_response()
291 data[35] = 0x30 + ((bcdDevice) & 0x0F); in fill_inquiry_response()
449 le16_to_cpu(us->pusb_dev->descriptor.bcdDevice)); in associate_dev()
655 le16_to_cpu(ddesc->bcdDevice), in get_device_info()
Dusual-tables.c100 bcd = le16_to_cpu(udev->descriptor.bcdDevice); in usb_usual_ignore_device()
/drivers/usb/core/
Dotg_productlist.h70 (id->bcdDevice_lo > le16_to_cpu(dev->descriptor.bcdDevice))) in is_targeted()
74 (id->bcdDevice_hi < le16_to_cpu(dev->descriptor.bcdDevice))) in is_targeted()
Ddevices.c321 u16 bcdDevice = le16_to_cpu(desc->bcdDevice); in usb_dump_device_descriptor() local
338 bcdDevice >> 8, bcdDevice & 0xff); in usb_dump_device_descriptor()
Ddriver.c651 (id->bcdDevice_lo > le16_to_cpu(dev->descriptor.bcdDevice))) in usb_match_device()
655 (id->bcdDevice_hi < le16_to_cpu(dev->descriptor.bcdDevice))) in usb_match_device()
929 le16_to_cpu(usb_dev->descriptor.bcdDevice))) in usb_uevent()
/drivers/hid/
Dhid-lg4ff.c1186 …dentify_multimode_wheel(struct hid_device *hid, const u16 reported_product_id, const u16 bcdDevice) in lg4ff_identify_multimode_wheel() argument
1209 (bcdDevice & mask) == result) { in lg4ff_identify_multimode_wheel()
1217 …ith bcdDevice %X was not recognized as multimode wheel, leaving in its current mode\n", bcdDevice); in lg4ff_identify_multimode_wheel()
1221 …int lg4ff_handle_multimode_wheel(struct hid_device *hid, u16 *real_product_id, const u16 bcdDevice) in lg4ff_handle_multimode_wheel() argument
1226 *real_product_id = lg4ff_identify_multimode_wheel(hid, reported_product_id, bcdDevice); in lg4ff_handle_multimode_wheel()
1267 const u16 bcdDevice = le16_to_cpu(udesc->bcdDevice); in lg4ff_init() local
1300 mmode_ret = lg4ff_handle_multimode_wheel(hid, &real_product_id, bcdDevice); in lg4ff_init()
1362 if ((bcdDevice >> 8) == LG4FF_FFEX_REV_MAJ && in lg4ff_init()
1363 (bcdDevice & 0xff) == LG4FF_FFEX_REV_MIN) in lg4ff_init()
Dhid-elo.c193 u16 fw_lvl = le16_to_cpu(dev->descriptor.bcdDevice); in elo_broken_firmware()
/drivers/usb/gadget/
Dcomposite.c2200 __le16 bcdDevice; in update_unchanged_dev_desc() local
2211 bcdDevice = new->bcdDevice; in update_unchanged_dev_desc()
2221 if (bcdDevice) in update_unchanged_dev_desc()
2222 new->bcdDevice = bcdDevice; in update_unchanged_dev_desc()
2224 new->bcdDevice = cpu_to_le16(get_default_bcdDevice()); in update_unchanged_dev_desc()
2588 if (covr->bcdDevice) in usb_composite_overwrite_options()
2589 desc->bcdDevice = cpu_to_le16(covr->bcdDevice); in usb_composite_overwrite_options()
Dconfigfs.c211 GI_DEVICE_DESC_SIMPLE_R_u16(bcdDevice);
229 u16 bcdDevice; in gadget_dev_desc_bcdDevice_store() local
232 ret = kstrtou16(page, 0, &bcdDevice); in gadget_dev_desc_bcdDevice_store()
235 ret = is_valid_bcd(bcdDevice); in gadget_dev_desc_bcdDevice_store()
239 to_gadget_info(item)->cdev.desc.bcdDevice = cpu_to_le16(bcdDevice); in gadget_dev_desc_bcdDevice_store()
379 CONFIGFS_ATTR(gadget_dev_desc_, bcdDevice);
1868 gi->cdev.desc.bcdDevice = cpu_to_le16(get_default_bcdDevice()); in gadgets_make()
/drivers/usb/serial/
Dpl2303.c405 u16 bcdDevice, bcdUSB; in pl2303_detect_type() local
420 bcdDevice = le16_to_cpu(desc->bcdDevice); in pl2303_detect_type()
428 switch (bcdDevice) { in pl2303_detect_type()
438 switch (bcdDevice) { in pl2303_detect_type()
Dbelkin_sa.c127 (le16_to_cpu(dev->descriptor.bcdDevice) <= 0x0206) ? 1 : 0; in belkin_sa_port_probe()
129 le16_to_cpu(dev->descriptor.bcdDevice), in belkin_sa_port_probe()
/drivers/usb/atm/
Dspeedtch.c351 const u16 bcdDevice = le16_to_cpu(interface_to_usbdev(intf)->descriptor.bcdDevice); in speedtch_find_firmware() local
352 const u8 major_revision = bcdDevice >> 8; in speedtch_find_firmware()
353 const u8 minor_revision = bcdDevice & 0xff; in speedtch_find_firmware()
/drivers/net/wireless/zydas/zd1211rw/
Dzd_usb.c125 return le16_to_cpu(udev->descriptor.bcdDevice); in get_bcdDevice()
262 u16 bcdDevice; in upload_firmware() local
268 bcdDevice = get_bcdDevice(udev); in upload_firmware()
278 if (fw_bcdDevice != bcdDevice) { in upload_firmware()
281 "%#06x differ\n", fw_bcdDevice, bcdDevice); in upload_firmware()
282 if (bcdDevice <= 0x4313) in upload_firmware()
/drivers/i2c/busses/
Di2c-robotfuzz-osif.c166 version = le16_to_cpu(priv->usb_dev->descriptor.bcdDevice); in osif_probe()
Di2c-tiny-usb.c238 version = le16_to_cpu(dev->usb_dev->descriptor.bcdDevice); in i2c_tiny_usb_probe()
/drivers/usb/gadget/legacy/
Dserial.c72 .bcdDevice = cpu_to_le16(GS_VERSION_NUM),
Dnokia.c92 .bcdDevice = cpu_to_le16(NOKIA_VERSION_NUM),
Dwebcam.c80 .bcdDevice = cpu_to_le16(WEBCAM_DEVICE_BCD),
/drivers/net/wireless/marvell/libertas_tf/
Dif_usb.c221 cardp->boot2_version = udev->descriptor.bcdDevice; in if_usb_probe()
498 if (le16_to_cpu(cardp->udev->descriptor.bcdDevice) < 0x3106) { in if_usb_receive_fwload()
/drivers/bluetooth/
Dbtusb.c1899 u16 bcdDevice = le16_to_cpu(data->udev->descriptor.bcdDevice); in btusb_setup_csr() local
1976 else if (bcdDevice == 0x0134 && in btusb_setup_csr()
3770 if (le16_to_cpu(udev->descriptor.bcdDevice) <= 0x0001 && in btusb_probe()
4027 u16 bcdDevice = le16_to_cpu(udev->descriptor.bcdDevice); in btusb_probe() local
4030 if (bcdDevice < 0x117) in btusb_probe()
4046 if (le16_to_cpu(udev->descriptor.bcdDevice) > 0x997) in btusb_probe()
Dath3k.c483 if (le16_to_cpu(udev->descriptor.bcdDevice) > 0x0001) in ath3k_probe()
/drivers/usb/gadget/udc/aspeed-vhub/
Dhub.c64 .bcdDevice = cpu_to_le16(0x0100),
890 vhub->vhub_dev_desc.bcdDevice = cpu_to_le16(id); in ast_vhub_of_parse_dev_desc()
/drivers/net/wireless/marvell/libertas/
Dif_usb.c277 cardp->boot2_version = udev->descriptor.bcdDevice; in if_usb_probe()
525 if (le16_to_cpu(cardp->udev->descriptor.bcdDevice) < 0x3106) { in if_usb_receive_fwload()
/drivers/net/usb/
Dkaweth.c893 le16_to_cpu(udev->descriptor.bcdDevice)); in kaweth_probe()
922 if (le16_to_cpu(udev->descriptor.bcdDevice) >> 8) { in kaweth_probe()

12