亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? usbd-arch.h

?? Linux2.4.20針對三星公司的s3c2440內(nèi)核基礎(chǔ)上的一些設(shè)備驅(qū)動代碼
?? H
字號:
/* * linux/drivers/usbd/usbd-arch.h  * * Copyright (c) 2000, 2001, 2002 Lineo * Copyright (c) 2001 Hewlett Packard * * By:  *      Stuart Lynne <sl@lineo.com>,  *      Tom Rushworth <tbr@lineo.com>,  *      Bruce Balden <balden@lineo.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * *//* * This file contains pre-canned configurations for specific architectures * and systems. * * The architecture specific areas concentrates on setting defaults that * will work with each architecture (endpoint restrictions etc). * * The system specific areas set defaults appropriate for a specific * system or board (vendor id etc). * * Typically during early development you will set these via the kernel * configuration and migrate the values into here once specific values * have been tested and will no longer change. *//* * Lineo specific  */#define VENDOR_SPECIFIC_CLASS           0xff#define VENDOR_SPECIFIC_SUBCLASS        0xff#define VENDOR_SPECIFIC_PROTOCOL        0xff/* * Lineo Classes */#define LINEO_CLASS            		0xff#define LINEO_SUBCLASS_SAFENET          0x01#define LINEO_SUBCLASS_SAFESERIAL       0x02/* * Lineo Protocols */#define	LINEO_SAFENET_CRC 		0x01#define	LINEO_SAFENET_CRC_PADDED	0x02#define	LINEO_SAFESERIAL_CRC 		0x01#define	LINEO_SAFESERIAL_CRC_PADDED	0x02/* * Architecture specific endpoint configurations */#if defined(CONFIG_ARCH_SA1100) || defined(CONFIG_ARCH_SA1100_MODULE)#warning#warning SETTING DEFAULTS FOR SA1110/* * The StrongArm SA-1110 has fixed endpoints and the bulk endpoints * are limited to 64 byte packets and does not support ZLP. */        #define ABS_OUT_ADDR                            1        #define ABS_IN_ADDR                             2        #define ABS_INT_ADDR                            0        #define MAX_OUT_PKTSIZE                         64        #define MAX_IN_PKTSIZE                          64        #undef MAX_INT_PKTSIZE        #undef CONFIG_USBD_SERIAL_OUT_ENDPOINT        #undef CONFIG_USBD_SERIAL_IN_ENDPOINT        #undef CONFIG_USBD_SERIAL_INT_ENDPOINT        #define CONFIG_USBD_NO_ZLP_SUPPORT		#define	CONFIG_USBD_MAC_AS_SERIAL_NUMBER	1#endif#if defined(CONFIG_ARCH_L7200)|| defined(CONFIG_ARCH_L7200_MODULE)#warning#warning SETTING DEFAULTS FOR L7200/* * The Linkup L7205/L7210 has fixed endpoints and the bulk endpoints * are limited to 32 byte packets and does not support ZLP. * * To get around specific hardware problems the Linkup eliminates optional  * strings in the configuration, reverses the CDC data interfaces. *  * It also requires all USB packets sent and received to be padded. They * must be either 31 or 32 bytes in length. * * XXX The new version of the L7210 may not require padding. */        #define ABS_OUT_ADDR                            1        #define ABS_IN_ADDR                             2        #define ABS_INT_ADDR                            3        #define MAX_OUT_PKTSIZE                         32        #define MAX_IN_PKTSIZE                          32        #define MAX_INT_PKTSIZE                         16        #undef CONFIG_USBD_SERIAL_OUT_ENDPOINT        #undef CONFIG_USBD_SERIAL_IN_ENDPOINT        #undef CONFIG_USBD_SERIAL_INT_ENDPOINT        #define CONFIG_USBD_NO_ZLP_SUPPORT        #define CONFIG_USBD_NET_NO_STRINGS        #define CONFIG_USBD_NET_PADDED	#define CONFIG_USBD_NET_CDC_DATA_REVERSED	#undef CONFIG_USBD_NET_CDC	#undef CONFIG_USBD_NET_MDLM	#undef CONFIG_USBD_NET_SAFE	#define CONFIG_USBD_NET_MDLM			1	#define	CONFIG_USBD_MAC_AS_SERIAL_NUMBER	1#endif#if defined(CONFIG_USBD_SL11_BUS)|| defined(CONFIG_USBD_SL11_BUS_MODULE)#warning#warning SETTING DEFAULTS FOR SL11/* * The SL11 endpoints can be a mix of 1, 2, or 3. The SL11 endpoints have * fixed addresses but each can be used for Bulk IN, Bulk OUT and Interrupt. * * The default addresses can be overridden by using the kernel configuration * and setting the net-fd IN, OUT and INT addresses. See Config.in */        #define DFL_OUT_ADDR                            1        #define DFL_IN_ADDR                             2        #define DFL_INT_ADDR                            3        #define MAX_OUT_ADDR                            3        #define MAX_IN_ADDR                             3        #define MAX_INT_ADDR                            3        #define MAX_OUT_PKTSIZE                         64        #define MAX_IN_PKTSIZE                          64        #define MAX_INT_PKTSIZE                         16#endif#if defined(CONFIG_USBD_SUPERH_BUS)|| defined(CONFIG_USBD_SUPERH_BUS_MODULE)#warning#warning SETTING DEFAULTS FOR SUPERH/* * The SuperH 7727 has fixed endpoints and does not support ZLP. */        #define ABS_OUT_ADDR                            1        #define ABS_IN_ADDR                             2        #define ABS_INT_ADDR                            3        #define MAX_OUT_PKTSIZE                         64        #define MAX_IN_PKTSIZE                          64        #define MAX_INT_PKTSIZE                         16	#undef CONFIG_USBD_NET_CDC	#undef CONFIG_USBD_NET_MDLM	#undef CONFIG_USBD_NET_SAFE	#define CONFIG_USBD_NET_MDLM			1	#define	CONFIG_USBD_MAC_AS_SERIAL_NUMBER	1#endif#if defined(CONFIG_USBD_PXA_BUS)|| defined(CONFIG_USBD_PXA_BUS_MODULE)#warning#warning SETTING DEFAULTS FOR PXA/* * The PXA has fixed endpoints  */        #define ABS_IN_ADDR                             1        #define ABS_OUT_ADDR                            2        #define ABS_INT_ADDR                            5        #define MAX_OUT_PKTSIZE                         64        #define MAX_IN_PKTSIZE                          64        #define MAX_INT_PKTSIZE                         8	#undef CONFIG_USBD_NET_CDC	#undef CONFIG_USBD_NET_MDLM	#undef CONFIG_USBD_NET_SAFE	#define CONFIG_USBD_NET_MDLM			1	#define	CONFIG_USBD_MAC_AS_SERIAL_NUMBER	1#endif/* ********************************************************************************************* *//* * known vendor and product ids * Serial and network vendor ids can be overidden with kernel config. *//* * For itsy we will use Compaq iPaq vendor ID and 0xffff for product id */#if defined(CONFIG_SA1100_ITSY) || defined(CONFIG_SA1100_H3XXX) || defined(CONFIG_SA1100_ITSY_MODULE) || defined(CONFIG_SA1100_H3XXX_MODULE)	#warning CONFIGURING FOR IPAQ H3XXX		#undef CONFIG_USBD_VENDORID	#undef CONFIG_USBD_PRODUCTID	#define CONFIG_USBD_VENDORID		0x049f	#define CONFIG_USBD_PRODUCTID		0xffff	#undef CONFIG_USBD_VENDORID	#define CONFIG_USBD_VENDORID		0x04dd	#undef CONFIG_USBD_SERIAL_PRODUCTID	#define CONFIG_USBD_SERIAL_PRODUCTID	0x8001	#undef CONFIG_USBD_NET_PRODUCTID	#define CONFIG_USBD_NET_PRODUCTID	0x8003	#undef CONFIG_USBD_SELFPOWERED	#undef	CONFIG_USBD_MANUFACTURER	#undef CONFIG_USBD_PRODUCT_NAME	#define CONFIG_USBD_SELFPOWERED		1	#define	CONFIG_USBD_MANUFACTURER	"Compaq"	#define CONFIG_USBD_PRODUCT_NAME	"iPaq"		#undef CONFIG_USBD_NET_CDC	#undef CONFIG_USBD_NET_MDLM	#undef CONFIG_USBD_NET_SAFE	#define CONFIG_USBD_NET_MDLM			1	#define	CONFIG_USBD_MAC_AS_SERIAL_NUMBER	1#endif/* * Assigned vendor and product ids for HP Calypso */#if defined(CONFIG_SA1100_CALYPSO) || defined(CONFIG_SA1110_CALYPSO) || defined(CONFIG_SA1100_CALYPSO_MODULE) || defined(CONFIG_SA1110_CALYPSO_MODULE)		#warning CONFIGURING FOR CALYPSO	#undef CONFIG_USBD_VENDORID	#undef CONFIG_USBD_PRODUCTID	#define CONFIG_USBD_VENDORID		0x03f0	#define CONFIG_USBD_PRODUCTID		0x2101	#undef CONFIG_USBD_SELFPOWERED	#undef	CONFIG_USBD_MANUFACTURER	#undef CONFIG_USBD_PRODUCT_NAME	#define CONFIG_USBD_SELFPOWERED		1	#define	CONFIG_USBD_MANUFACTURER	"HP"	#define CONFIG_USBD_PRODUCT_NAME	"Journada X25"#endif/* * Assigned vendor and serial/network product ids for Sharp Iris */#if defined(CONFIG_ARCH_L7200) && defined(CONFIG_IRIS) || defined(CONFIG_ARCH_L7200_MODULE) && defined(CONFIG_IRIS_MODULE)	#warning CONFIGURING FOR LINKUP	#undef CONFIG_USBD_VENDORID	#define CONFIG_USBD_VENDORID		0x04dd	#undef CONFIG_USBD_SERIAL_PRODUCTID	#define CONFIG_USBD_SERIAL_PRODUCTID	0x8001	#undef CONFIG_USBD_NET_PRODUCTID	#define CONFIG_USBD_NET_PRODUCTID	0x8003	#undef CONFIG_USBD_SELFPOWERED	#undef	CONFIG_USBD_MANUFACTURER	#undef CONFIG_USBD_PRODUCT_NAME	#define CONFIG_USBD_SELFPOWERED		1	#define	CONFIG_USBD_MANUFACTURER	"Sharp"	#define CONFIG_USBD_PRODUCT_NAME	"Iris"	#undef CONFIG_USBD_NET_CDC	#undef CONFIG_USBD_NET_MDLM	#undef CONFIG_USBD_NET_SAFE	#define CONFIG_USBD_NET_MDLM			1	#define	CONFIG_USBD_MAC_AS_SERIAL_NUMBER	1#endif/* * Assigned vendor and serial/network product ids for Sharp Collie */#if defined(CONFIG_SA1100_COLLIE) || defined(CONFIG_SA1100_COLLIE_MODULE)		#warning CONFIGURING FOR COLLIE	#undef CONFIG_USBD_VENDORID	#define CONFIG_USBD_VENDORID		0x04dd	#undef CONFIG_USBD_SERIAL_PRODUCT ID	#define CONFIG_USBD_SERIAL_PRODUCT ID	0x8002	#undef CONFIG_USBD_NET_PRODUCTID	//#define CONFIG_USBD_NET_PRODUCTID	0x8004	#define CONFIG_USBD_NET_PRODUCTID	0x8003	#undef CONFIG_USBD_SELFPOWERED	#undef	CONFIG_USBD_MANUFACTURER	#undef CONFIG_USBD_PRODUCT_NAME	#define CONFIG_USBD_SELFPOWERED		1	#define	CONFIG_USBD_MANUFACTURER	"Sharp"	#define CONFIG_USBD_PRODUCT_NAME	"Zaurus"	#undef CONFIG_USBD_NET_CDC	#undef CONFIG_USBD_NET_MDLM	#undef CONFIG_USBD_NET_SAFE	#define CONFIG_USBD_NET_MDLM			1	#define	CONFIG_USBD_MAC_AS_SERIAL_NUMBER	1	#endif/* * Assigned vendor and serial/network product ids for Vercel UD1 */#if defined(CONFIG_SA1100_IDR)		#warning CONFIGURING FOR Vercel UD1	#define	CONFIG_USBD_MAC_AS_SERIAL_NUMBER	1	#endif#ifdef CONFIG_SABINAL_DISCOVERY	#warning CONFIGURING FOR DISCOVERY	#undef CONFIG_USBD_VENDORID	#define CONFIG_USBD_VENDORID		0x04dd	#undef CONFIG_USBD_SERIAL_PRODUCT ID	#define CONFIG_USBD_SERIAL_PRODUCT ID	0x8005	#undef CONFIG_USBD_NET_PRODUCTID	#define CONFIG_USBD_NET_PRODUCTID	0x8005	#undef CONFIG_USBD_SELFPOWERED	#undef	CONFIG_USBD_MANUFACTURER	#undef CONFIG_USBD_PRODUCT_NAME	#define CONFIG_USBD_SELFPOWERED		1	#define	CONFIG_USBD_MANUFACTURER	"Sharp"	#define CONFIG_USBD_PRODUCT_NAME	"SL-A300"	#undef CONFIG_USBD_NET_CDC	#undef CONFIG_USBD_NET_MDLM	#undef CONFIG_USBD_NET_SAFE	#define CONFIG_USBD_NET_MDLM			1	#define	CONFIG_USBD_MAC_AS_SERIAL_NUMBER	1#endif

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
色噜噜狠狠成人中文综合| 夫妻av一区二区| 亚洲国产日韩a在线播放性色| 中文字幕成人网| 国产精品国产三级国产专播品爱网| 久久亚洲二区三区| 精品黑人一区二区三区久久 | 国产午夜一区二区三区| 2023国产精品视频| 久久婷婷成人综合色| 中文字幕欧美激情一区| 亚洲婷婷综合色高清在线| 国产精品久久久久久久久快鸭| 国产视频一区不卡| 中文字幕一区av| 亚洲午夜精品17c| 免费在线看成人av| 成人一级片在线观看| www.亚洲精品| 欧美一区二区高清| 久久久久97国产精华液好用吗| 国产精品乱子久久久久| 一区二区三区免费| 奇米四色…亚洲| 国产成人av一区| 欧美性一区二区| 国产亚洲欧美一级| 一区二区三区在线视频免费观看| 午夜精品一区二区三区三上悠亚| 久久99精品久久久久久国产越南 | 欧美日韩的一区二区| 欧美电视剧在线观看完整版| 欧美一区二区三区公司| 亚洲精品一区二区三区影院| 亚洲欧美综合另类在线卡通| 午夜精品久久久久久久| 国产福利一区二区三区| 欧美唯美清纯偷拍| 久久久99精品免费观看不卡| 亚洲午夜久久久久久久久电影网| 国产乱国产乱300精品| 在线视频你懂得一区二区三区| 日韩一区二区免费高清| 亚洲色图制服诱惑 | 欧美在线综合视频| 久久精品免费在线观看| 丝袜诱惑亚洲看片| 一本一本久久a久久精品综合麻豆| 日韩女同互慰一区二区| 亚洲一区二区中文在线| 国产成人午夜片在线观看高清观看| 欧美写真视频网站| 国产精品福利一区二区| 国产成人精品免费| 日韩欧美自拍偷拍| 爽好多水快深点欧美视频| 成人性生交大片免费| 日韩欧美高清在线| 日韩vs国产vs欧美| 欧洲一区二区av| 亚洲三级电影网站| 97久久久精品综合88久久| 国产视频不卡一区| 国产精品一区在线观看你懂的| 宅男在线国产精品| 一区二区三区日韩欧美精品| 成人黄色777网| 国产精品日韩成人| 岛国av在线一区| 欧美极品少妇xxxxⅹ高跟鞋 | 精品剧情在线观看| 日韩国产精品久久久| 色婷婷综合视频在线观看| 国产日韩欧美综合在线| 国产经典欧美精品| 国产亚洲欧美在线| 成人美女在线观看| 亚洲欧美一区二区三区久本道91| 成人国产电影网| 国产精品久久看| 色综合色狠狠综合色| 亚洲激情图片qvod| 欧美日韩午夜在线视频| 视频一区在线播放| 久久综合久久99| yourporn久久国产精品| 亚洲美女区一区| 4438x亚洲最大成人网| 久草在线在线精品观看| 国产日韩欧美一区二区三区乱码| 国产福利91精品| 亚洲女爱视频在线| 欧美久久一区二区| 久久精品国产久精国产| 国产亚洲欧美一级| 欧美性三三影院| 国产一区二区三区在线观看免费 | 久久国产精品99久久久久久老狼| 久久综合五月天婷婷伊人| 成人做爰69片免费看网站| 亚洲综合色在线| 欧美r级在线观看| 91色porny| 日本中文字幕不卡| 国产精品视频第一区| 欧美日韩精品福利| 成人免费的视频| 视频在线观看一区| 国产精品理论片| 日韩精品一区二区三区老鸭窝| 成人午夜碰碰视频| 午夜精品久久久久久久99樱桃| 精品国产3级a| 色94色欧美sute亚洲线路一久| 日韩成人精品视频| 亚洲男人电影天堂| 337p日本欧洲亚洲大胆精品| 色欧美乱欧美15图片| 久久99日本精品| 亚洲一区二区欧美日韩| 久久久高清一区二区三区| 欧美撒尿777hd撒尿| 成人动漫av在线| 日本不卡中文字幕| 一区二区三区美女| 国产亚洲成年网址在线观看| 91麻豆精品国产自产在线观看一区| 国产成人精品免费看| 美女视频黄免费的久久| 伊人开心综合网| 中文字幕一区二区三区蜜月| 精品美女在线观看| 欧美肥妇bbw| 色网综合在线观看| www.日本不卡| 国产精品996| 国产综合色在线| 蜜桃久久av一区| 奇米精品一区二区三区四区| 亚洲国产wwwccc36天堂| 亚洲自拍偷拍麻豆| 亚洲宅男天堂在线观看无病毒| 日韩理论片一区二区| 中文字幕成人av| 国产精品欧美久久久久无广告 | 日本大胆欧美人术艺术动态| 亚洲一卡二卡三卡四卡无卡久久 | 国产精品国产精品国产专区不片 | 欧美日本一区二区三区| 91国偷自产一区二区开放时间| 成人伦理片在线| 99精品视频一区二区三区| 99综合电影在线视频| 不卡免费追剧大全电视剧网站| eeuss鲁片一区二区三区在线观看| 国产乱码精品1区2区3区| 岛国av在线一区| 色8久久人人97超碰香蕉987| 欧美在线影院一区二区| 欧美日韩在线观看一区二区| 欧美日韩激情一区二区| 欧美不卡123| 国产日韩欧美不卡在线| 亚洲猫色日本管| 一区二区三区波多野结衣在线观看| 亚洲精品免费一二三区| 香蕉久久夜色精品国产使用方法| 天天操天天干天天综合网| 轻轻草成人在线| 国产乱子伦视频一区二区三区| 国产suv一区二区三区88区| 成人国产视频在线观看| 欧美色爱综合网| 日韩情涩欧美日韩视频| 国产精品亲子乱子伦xxxx裸| 亚洲精品视频观看| 老司机精品视频导航| 风间由美性色一区二区三区| 日本久久一区二区三区| 日韩一区二区在线看片| 国产精品卡一卡二| 午夜精品123| 岛国精品在线播放| 欧美理论在线播放| 国产欧美一区二区在线| 亚洲电影在线播放| 国产在线精品一区二区 | 日韩二区在线观看| 国产成人a级片| 欧美女孩性生活视频| 国产人久久人人人人爽| 亚洲国产成人porn| 高清成人在线观看| 8x福利精品第一导航| 国产精品麻豆视频| 经典三级在线一区| 欧美三级日韩在线| 国产精品久久久久久久裸模| 午夜精品一区二区三区免费视频| 国产精品一区2区|