/*------------------------Export Marco Definition---------------------------*/
 #define DbgPrint       pr_info
 #define RT_PRINTK(fmt, args...)                                \
-       DbgPrint( "%s(): " fmt, __func__, ## args);
+       DbgPrint("%s(): " fmt, __func__, ## args);
 
 #ifndef ASSERT
        #define ASSERT(expr)
 
 #define ODM_RT_ASSERT(pDM_Odm, expr, fmt)                              \
        if (!(expr)) {                                                  \
-               DbgPrint( "Assertion failed! %s at ......\n", #expr);   \
-               DbgPrint( "      ......%s,%s,line=%d\n", __FILE__,      \
+               DbgPrint("Assertion failed! %s at ......\n", #expr);    \
+               DbgPrint("      ......%s,%s,line=%d\n", __FILE__,       \
                        __func__, __LINE__);                            \
                RT_PRINTK fmt;                                          \
                ASSERT(false);                                          \