1 /* SPDX-License-Identifier: GPL-2.0 */ 2 /****************************************************************************** 3 * 4 * Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved. 5 * 6 ******************************************************************************/ 7 #ifndef __DRV_CONF_H__ 8 #define __DRV_CONF_H__ 9 #include "autoconf.h" 10 11 //About USB VENDOR REQ 12 #if defined(CONFIG_USB_VENDOR_REQ_BUFFER_PREALLOC) && !defined(CONFIG_USB_VENDOR_REQ_MUTEX) 13 #warning "define CONFIG_USB_VENDOR_REQ_MUTEX for CONFIG_USB_VENDOR_REQ_BUFFER_PREALLOC automatically" 14 #define CONFIG_USB_VENDOR_REQ_MUTEX 15 #endif 16 #if defined(CONFIG_VENDOR_REQ_RETRY) && !defined(CONFIG_USB_VENDOR_REQ_MUTEX) 17 #warning "define CONFIG_USB_VENDOR_REQ_MUTEX for CONFIG_VENDOR_REQ_RETRY automatically" 18 #define CONFIG_USB_VENDOR_REQ_MUTEX 19 #endif 20 21 #define DYNAMIC_CAMID_ALLOC 22 23 #ifndef CONFIG_RTW_HIQ_FILTER 24 #define CONFIG_RTW_HIQ_FILTER 1 25 #endif 26 27 //#include <rtl871x_byteorder.h> 28 29 #endif // __DRV_CONF_H__ 30