From: Mahati Chamarthy <mahati.chamarthy@gmail.com>
Date: Wed, 8 Oct 2014 14:25:16 +0000 (+0530)
Subject: Staging: rtl8723au: include: Remove unused macros
X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=2430454e92860003cb52122fd661177e9eeb6165;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git

Staging: rtl8723au: include: Remove unused macros

This patch removes macros that are never used.

Signed-off-by: Mahati Chamarthy <mahati.chamarthy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---

diff --git a/drivers/staging/rtl8723au/include/odm_debug.h b/drivers/staging/rtl8723au/include/odm_debug.h
index 8509a04b6a52..83be5bab9e09 100644
--- a/drivers/staging/rtl8723au/include/odm_debug.h
+++ b/drivers/staging/rtl8723au/include/odm_debug.h
@@ -104,12 +104,6 @@
 			RT_PRINTK fmt;								\
 		}
 
-#define ODM_RT_TRACE_F(pDM_Odm, comp, level, fmt)						\
-		if(((comp) & pDM_Odm->DebugComponents) && (level <= pDM_Odm->DebugLevel))	\
-		{										\
-			RT_PRINTK fmt;								\
-		}
-
 #define ODM_RT_ASSERT(pDM_Odm, expr, fmt)							\
 		if(!(expr)) {									\
 			printk("Assertion failed! %s at ......\n", #expr);			\
@@ -117,21 +111,6 @@
 			RT_PRINTK fmt;								\
 			ASSERT(false);								\
 		}
-#define ODM_dbg_enter() { printk("==> %s\n", __func__); }
-#define ODM_dbg_exit() { printk("<== %s\n", __func__); }
-#define ODM_dbg_trace(str) { printk("%s:%s\n", __func__, str); }
-
-#define ODM_PRINT_ADDR(pDM_Odm, comp, level, title_str, ptr)						\
-			if(((comp) & pDM_Odm->DebugComponents) && (level <= pDM_Odm->DebugLevel){	\
-				int __i;			\
-				u8 *	__ptr = (u8 *)ptr;	\
-				printk("[ODM] ");		\
-				printk(title_str);		\
-				printk(" ");			\
-				for (__i=0; __i < 6; __i++)	\
-					printk("%02X%s", __ptr[__i], (__i == 5) ? "" : "-");		\
-				printk("\n");			\
-			}
 
 void ODM_InitDebugSetting23a(struct dm_odm_t *pDM_Odm);