123456789101112131415161718192021222324252627282930 |
- //***************************************************************************
- //!file cbus_debug.h
- //!brief
- //
- //***************************************************************************/
- #ifndef __cbus_DEBUG_H__
- #define __cbus_DEBUG_H__
- #include "cbus_datatypes.h"
- //------------------------------------------------------------------------------
- // Debug Flags
- //------------------------------------------------------------------------------
- #define RCP_DEBUG 0 // 1 - Enable RCP debug mode
- //------------------------------------------------------------------------------
- // Debug Macros
- //------------------------------------------------------------------------------
- #define MHL_DEBUG
- //#define CBUS_DETAIL_DEBUG_MSG
- #ifdef MHL_DEBUG
- #define PRE_FMT "MHL"
- #define mhldbg( fmt, arg...) printk("[%s]"fmt,PRE_FMT, ##arg)
- #endif
- #endif // __cbus_DEBUG_H__
|