1 /* ----------------------------------------------------------------------------- 2 * Copyright (c) 2011 Ozmo Inc 3 * Released under the GNU General Public License Version 2 (GPLv2). 4 * ---------------------------------------------------------------------------*/ 5 #ifndef _OZCONFIG_H 6 #define _OZCONFIG_H 7 8 /* #define WANT_TRACE */ 9 #ifdef WANT_TRACE 10 #define WANT_VERBOSE_TRACE 11 #endif /* #ifdef WANT_TRACE */ 12 /* #define WANT_URB_PARANOIA */ 13 14 /* #define WANT_PRE_2_6_39 */ 15 #define WANT_EVENT_TRACE 16 17 /* These defines determine what verbose trace is displayed. */ 18 #ifdef WANT_VERBOSE_TRACE 19 /* #define WANT_TRACE_STREAM */ 20 /* #define WANT_TRACE_URB */ 21 /* #define WANT_TRACE_CTRL_DETAIL */ 22 #define WANT_TRACE_HUB 23 /* #define WANT_TRACE_RX_FRAMES */ 24 /* #define WANT_TRACE_TX_FRAMES */ 25 #endif /* WANT_VERBOSE_TRACE */ 26 27 #endif /* _OZCONFIG_H */ 28