Home
last modified time | relevance | path

Searched refs:USB_DEVICE (Results 1 – 10 of 10) sorted by relevance

/external/u-boot/drivers/usb/eth/
Dasix.c882 { USB_DEVICE(0x05ac, 0x1402), .driver_info = FLAG_TYPE_AX88772 },
884 { USB_DEVICE(0x07d1, 0x3c05), .driver_info = FLAG_TYPE_AX88772 },
886 { USB_DEVICE(0x2001, 0x1a02), .driver_info = FLAG_TYPE_AX88772 },
888 { USB_DEVICE(0x0b95, 0x772a), .driver_info = FLAG_TYPE_AX88772 },
890 { USB_DEVICE(0x0b95, 0x7720), .driver_info = FLAG_TYPE_AX88772 },
892 { USB_DEVICE(0x0b95, 0x1720), .driver_info = FLAG_TYPE_AX88172 },
894 { USB_DEVICE(0x0db0, 0xa877), .driver_info = FLAG_TYPE_AX88772 },
896 { USB_DEVICE(0x13b1, 0x0018), .driver_info = FLAG_TYPE_AX88172 },
898 { USB_DEVICE(0x1557, 0x7720), .driver_info = FLAG_TYPE_AX88772 },
900 { USB_DEVICE(0x2001, 0x3c05), .driver_info = FLAG_TYPE_AX88772 },
[all …]
Dr8152.c1630 { USB_DEVICE(0x0bda, 0x8050) },
1631 { USB_DEVICE(0x0bda, 0x8152) },
1632 { USB_DEVICE(0x0bda, 0x8153) },
1635 { USB_DEVICE(0x04e8, 0xa101) },
1638 { USB_DEVICE(0x17ef, 0x304f) },
1639 { USB_DEVICE(0x17ef, 0x3052) },
1640 { USB_DEVICE(0x17ef, 0x3054) },
1641 { USB_DEVICE(0x17ef, 0x3057) },
1642 { USB_DEVICE(0x17ef, 0x7205) },
1643 { USB_DEVICE(0x17ef, 0x720a) },
[all …]
Dasix88179.c908 { USB_DEVICE(0x0b95, 0x1790), .driver_info = FLAG_TYPE_AX88179 },
909 { USB_DEVICE(0x0b95, 0x178a), .driver_info = FLAG_TYPE_AX88178a },
910 { USB_DEVICE(0x2001, 0x4a00), .driver_info = FLAG_TYPE_DLINK_DUB1312 },
911 { USB_DEVICE(0x0df6, 0x0072), .driver_info = FLAG_TYPE_SITECOM },
912 { USB_DEVICE(0x04e8, 0xa100), .driver_info = FLAG_TYPE_SAMSUNG },
913 { USB_DEVICE(0x17ef, 0x304b), .driver_info = FLAG_TYPE_LENOVO },
914 { USB_DEVICE(0x04b4, 0x3610), .driver_info = FLAG_TYPE_GX3 },
Dsmsc95xx.c1067 { USB_DEVICE(0x05ac, 0x1402) },
1068 { USB_DEVICE(0x0424, 0xec00) }, /* LAN9512/LAN9514 Ethernet */
1069 { USB_DEVICE(0x0424, 0x9500) }, /* LAN9500 Ethernet */
1070 { USB_DEVICE(0x0424, 0x9730) }, /* LAN9730 Ethernet (HSIC) */
1071 { USB_DEVICE(0x0424, 0x9900) }, /* SMSC9500 USB Ethernet (SAL10) */
1072 { USB_DEVICE(0x0424, 0x9e00) }, /* LAN9500A Ethernet */
Dmcs7830.c934 { USB_DEVICE(0x9710, 0x7832) }, /* Moschip 7832 */
935 { USB_DEVICE(0x9710, 0x7830), }, /* Moschip 7830 */
936 { USB_DEVICE(0x9710, 0x7730), }, /* Moschip 7730 */
937 { USB_DEVICE(0x0df6, 0x0021), }, /* Sitecom LN 30 */
Dlan78xx.c471 { USB_DEVICE(0x0424, 0x7800) }, /* LAN7800 USB Ethernet */
472 { USB_DEVICE(0x0424, 0x7850) }, /* LAN7850 USB Ethernet */
Dlan75xx.c310 { USB_DEVICE(0x0424, 0x7500) }, /* LAN7500 USB Ethernet */
/external/autotest/server/cros/cfm/configurable_test/
Dactions_unittest.py14 USB_DEVICE = usb_device.UsbDevice('v', 'p', 'prod', ['if'], 1, 2, 1) variable
104 return_value=[USB_DEVICE]) # Default checks list is of size 1
156 return_value=[USB_DEVICE])
164 side_effect=[[USB_DEVICE, USB_DEVICE], [], [USB_DEVICE]])
/external/u-boot/doc/driver-model/
Dusb-info.txt182 with USB devices - you can use the USB_DEVICE() macro to declare a USB
183 driver. For example, usb_storage.c defines a USB_DEVICE() to handle storage
216 with USB_DEVICE()). If it finds a match it binds that driver to create a new
306 USB_DEVICE(usb_mass_storage, mass_storage_id_table);
308 The USB_DEVICE() macro attaches the given table of matching information to
310 'usb_mass_storage' and this must match the first parameter of USB_DEVICE.
328 (e.g drivers/usb/eth/asix.c) should include a USB_DEVICE() declaration, so
/external/u-boot/include/
Dusb.h515 #define USB_DEVICE(vend, prod) \ macro