- 論壇徽章:
- 0
|
struct usb_device_id {
/* This bitmask is used to determine which of the following fields
* are to be used for matching.
*/
__u16 match_flags;
/*
* vendor/product codes are checked, if vendor is nonzero
* Range is for device revision (bcdDevice), inclusive;
* zero values here mean range isn't considered
*/
__u16 idVendor;
__u16 idProduct;
__u16 bcdDevice_lo, bcdDevice_hi;
*
*
*
}
static struct usb_device_id skel_table [] = {
{ USB_DEVICE(USB_SKEL_VENDOR_ID, USB_SKEL_PRODUCT_ID) },
{ } /* 終止入口*/
};
跟老譚的沒啥不一樣,換了個(gè)時(shí)間和地點(diǎn)而已~~
就是這個(gè)樣子~~
[ 本帖最后由 小瓶蓋兒 于 2008-9-2 17:26 編輯 ] |
|