bug fix
[satune.git] / src / common.h
index 879c1f2cf40613a7e3333a101a8d6f2be2ceba16..401a5e8af7cece371f3bd29cfce27ec0f211a0c9 100644 (file)
@@ -41,7 +41,6 @@ extern int switch_alloc;
 #ifdef CONFIG_DEBUG
 #define DEBUG(fmt, ...) do { model_print("*** %15s:%-4d %25s() *** " fmt, __FILE__, __LINE__, __func__, ## __VA_ARGS__); } while (0)
 #define DBG() DEBUG("\n")
-#define LOG(fmt, ...) do {model_print(fmt, ## __VA_ARGS__);} while (0)
 #define DBG_ENABLED() (1)
 #else
 #define DEBUG(fmt, ...)