blob: 9720e9b8c91cc5554a33f54c0fd6ea94997df00b [file] [log] [blame]
Jeff Johnson295189b2012-06-20 16:38:30 -07001/*
Kiet Lamaa8e15a2014-02-11 23:30:06 -08002 * Copyright (c) 2012-2013 Qualcomm Atheros, Inc.
3 * All Rights Reserved.
4 * Qualcomm Atheros Confidential and Proprietary.
Gopichand Nakkala92f07d82013-01-08 21:16:34 -08005 */
6/*
Jeff Johnson295189b2012-06-20 16:38:30 -07007 *
8 * Airgo Networks, Inc proprietary. All rights reserved.
9 * Author: Sandesh Goel
10 * Date: 02/25/02
11 * History:-
12 * Date Modified by Modification Information
13 * --------------------------------------------------------------------
14 *
15 */
16
17#ifndef __UTILS_GLOBAL_H__
18#define __UTILS_GLOBAL_H__
19
20#include "sirParams.h"
21
22/*
23 * Current debug and event log level
24 */
25#define LOG_FIRST_MODULE_ID SIR_FIRST_MODULE_ID
26#define LOG_LAST_MODULE_ID SIR_LAST_MODULE_ID
27#define LOG_ENTRY_NUM (LOG_LAST_MODULE_ID - LOG_FIRST_MODULE_ID + 1)
28
29typedef struct sAniSirUtils
30{
31 tANI_U32 gLogEvtLevel[LOG_ENTRY_NUM];
32 tANI_U32 gLogDbgLevel[LOG_ENTRY_NUM];
33
34} tAniSirUtils, *tpAniSirUtils;
35
36#endif