blob: 8d002578e5d84f4ca95551034ae88785a5cb0808 [file] [log] [blame]
/*
* Copyright (c) 2012-2013 Qualcomm Atheros, Inc.
* All Rights Reserved.
* Qualcomm Atheros Confidential and Proprietary.
*/
/*
* This file limDebug.h contains log function called by LIM module.
*
* Author: Chandra Modumudi
* Date: 02/11/02
* History:-
* Date Modified by Modification Information
* --------------------------------------------------------------------
*
*/
#ifndef __LIM_DEBUG_H__
#define __LIM_DEBUG_H__
#include "utilsApi.h"
#include "sirDebug.h"
#if !defined(__printf)
#define __printf(a,b)
#endif
void __printf(3,4) limLog(tpAniSirGlobal pMac, tANI_U32 loglevel,
const char *pString, ...);
/* define this to show more message in the LIM during TDLS development */
#define LIM_DEBUG_TDLS
#ifdef LIM_DEBUG_TDLS
#define LIM_LOG_TDLS(x0) x0
#else
#define LIM_LOG_TDLS(x0)
#endif
#endif