Changeset 2972e21 in mainline for uspace/drv/uhci/debug.h
- Timestamp:
- 2010-12-31T15:44:54Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade
- Children:
- 28f660d
- Parents:
- bf5a3be
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/uhci/debug.h
rbf5a3be r2972e21 41 41 enum debug_levels { 42 42 DEBUG_LEVEL_FATAL_ERROR = 1, 43 DEBUG_LEVEL_CRITICAL_ERROR = 2, 44 DEBUG_LEVEL_ERROR = 3, 45 DEBUG_LEVEL_WARNING = 4, 46 DEBUG_LEVEL_INFO = 5 43 DEBUG_LEVEL_ERROR = 2, 44 DEBUG_LEVEL_WARNING = 3, 45 DEBUG_LEVEL_INFO = 4, 46 DEBUG_LEVEL_VERBOSE = 5, 47 DEBUG_LEVEL_MAX = DEBUG_LEVEL_VERBOSE 47 48 }; 48 49 … … 56 57 usb_dprintf( NAME, DEBUG_LEVEL_INFO, fmt, ##args ) 57 58 59 #define uhci_print_verbose( fmt, args... ) \ 60 usb_dprintf( NAME, DEBUG_LEVEL_VERBOSE, fmt, ##args ) 61 58 62 #endif 59 63 /**
Note:
See TracChangeset
for help on using the changeset viewer.