openbcm

Git mirror of https://github.com/Broadcom-Network-Switching-Software/OpenBCM
git clone git://git.finwo.net/mirror/broadcom/openbcm
Log | Files | Refs | README

ukernel_debug.h (633B)


      1 /*
      2  * 
      3  * This license is set out in https://raw.githubusercontent.com/Broadcom-Network-Switching-Software/OpenBCM/master/Legal/LICENSE file.
      4  * 
      5  * Copyright 2007-2020 Broadcom Inc. All rights reserved.
      6  *
      7  * File:    ukernel_debug.h
      8  * Purpose:  
      9  */
     10 
     11 #ifndef _UKERNEL_DEBUG_H
     12 #define _UKERNEL_DEBUG_H
     13 
     14 #if defined(SOC_UKERNEL_DEBUG)
     15 
     16 #include <soc/defs.h>
     17 
     18 #if defined(BCM_CMICM_SUPPORT) || defined(BCM_IPROC_SUPPORT)
     19 
     20 #include <appl/diag/shell.h>
     21 
     22 extern cmd_result_t cmd_cmic_ucdebug(int unit, args_t *a);
     23 #else
     24 #define cmd_cmic_ucdebug(unit, a)
     25 #endif
     26 #else
     27 #define cmd_cmic_ucdebug(unit, a)
     28 #endif
     29 #endif /*_UKERNEL_DEBUG_H*/