linux/drivers/staging/rtl8723bs/hal/odm_debug.c
<<
>>
Prefs
   1/******************************************************************************
   2 *
   3 * Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved.
   4 *
   5 * This program is free software; you can redistribute it and/or modify it
   6 * under the terms of version 2 of the GNU General Public License as
   7 * published by the Free Software Foundation.
   8 *
   9 * This program is distributed in the hope that it will be useful, but WITHOUT
  10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  12 * more details.
  13 *
  14 ******************************************************************************/
  15
  16#include "odm_precomp.h"
  17
  18void ODM_InitDebugSetting(PDM_ODM_T pDM_Odm)
  19{
  20        pDM_Odm->DebugLevel = ODM_DBG_LOUD;
  21
  22        pDM_Odm->DebugComponents =
  23/* BB Functions */
  24/*              ODM_COMP_DIG                                    | */
  25/*              ODM_COMP_RA_MASK                                | */
  26/*              ODM_COMP_DYNAMIC_TXPWR          | */
  27/*              ODM_COMP_FA_CNT                         | */
  28/*              ODM_COMP_RSSI_MONITOR                   | */
  29/*              ODM_COMP_CCK_PD                         | */
  30/*              ODM_COMP_ANT_DIV                                | */
  31/*              ODM_COMP_PWR_SAVE                               | */
  32/*              ODM_COMP_PWR_TRAIN                      | */
  33/*              ODM_COMP_RATE_ADAPTIVE          | */
  34/*              ODM_COMP_PATH_DIV                               | */
  35/*              ODM_COMP_DYNAMIC_PRICCA         | */
  36/*              ODM_COMP_RXHP                                   | */
  37/*              ODM_COMP_MP                                     | */
  38/*              ODM_COMP_CFO_TRACKING           | */
  39
  40/* MAC Functions */
  41/*              ODM_COMP_EDCA_TURBO                     | */
  42/*              ODM_COMP_EARLY_MODE                     | */
  43/* RF Functions */
  44/*              ODM_COMP_TX_PWR_TRACK           | */
  45/*              ODM_COMP_RX_GAIN_TRACK          | */
  46/*              ODM_COMP_CALIBRATION                    | */
  47/* Common */
  48/*              ODM_COMP_COMMON                         | */
  49/*              ODM_COMP_INIT                                   | */
  50/*              ODM_COMP_PSD                                    | */
  510;
  52}
  53