blob: 9b8fa17055c6a78d3aa68a2b19bc3804f8801a41 [file] [log] [blame]
Jeff Johnson295189b2012-06-20 16:38:30 -07001/*
Jeff Johnson32d95a32012-09-10 13:15:23 -07002 * Copyright (c) 2012, The Linux Foundation. All rights reserved.
Jeff Johnson295189b2012-06-20 16:38:30 -07003 *
4 * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
5 *
6 *
7 * Permission to use, copy, modify, and/or distribute this software for
8 * any purpose with or without fee is hereby granted, provided that the
9 * above copyright notice and this permission notice appear in all
10 * copies.
11 *
12 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
13 * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
14 * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
15 * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
16 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
17 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
18 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
19 * PERFORMANCE OF THIS SOFTWARE.
20 */
21
22/*
23 * This file limDebug.h contains log function called by LIM module.
24 *
25 * Author: Chandra Modumudi
26 * Date: 02/11/02
27 * History:-
28 * Date Modified by Modification Information
29 * --------------------------------------------------------------------
30 *
31 */
32
33#ifndef __LIM_DEBUG_H__
34#define __LIM_DEBUG_H__
35
36#include "utilsApi.h"
37#include "sirDebug.h"
38
39
40void limLog(tpAniSirGlobal pMac, tANI_U32 loglevel, const char *pString,...) ;
41
Mohit Khannac0b992f2012-12-04 15:08:18 -080042/* define this to show more message in the LIM during TDLS development */
43#define LIM_DEBUG_TDLS
44
45#ifdef LIM_DEBUG_TDLS
46#define LIM_LOG_TDLS(x0) x0
47#else
48#define LIM_LOG_TDLS(x0)
49#endif
50
Jeff Johnson295189b2012-06-20 16:38:30 -070051#endif