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

int.c (835B)


      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-2019 Broadcom Inc. All rights reserved.
      6  *
      7  * INT - In-band Telemetry Turnaround Embedded Application APP interface
      8  * Purpose: API to configure In-band Telemetry Turnaround embedded app interface.
      9  */
     10 #if defined(INCLUDE_INT)
     11 #include <shared/bslenum.h>
     12 #include <shared/bsl.h>
     13 
     14 #include <soc/defs.h>
     15 #include <soc/drv.h>
     16 
     17 #include <bcm/error.h>
     18 #include <bcm/int.h>
     19 
     20 /* Initialize INT Turnaround configuration information structure. */
     21 void bcm_int_turnaround_config_t_init(bcm_int_turnaround_config_t *config_info)
     22 {
     23     sal_memset(config_info, 0, sizeof(bcm_int_turnaround_config_t));
     24 }
     25 #else /* INCLUDE_INT */
     26 int _int_turnaround_not_empty;
     27 #endif /* INCLUDE_INT */