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

telemetry.c (624B)


      1 /*
      2  * This license is set out in https://raw.githubusercontent.com/Broadcom-Network-Switching-Software/OpenBCM/master/Legal/LICENSE file.
      3  * 
      4  * Copyright 2007-2019 Broadcom Inc. All rights reserved.
      5  */
      6 #include <shared/bslenum.h>
      7 #include <shared/bsl.h>
      8 
      9 #include <soc/defs.h>
     10 #include <soc/drv.h>
     11 
     12 #include <bcm/error.h>
     13 #include <bcm/collector.h>
     14 #include <bcm/telemetry.h>
     15 
     16 /* Initialize a telemetry config information structure. */
     17 void bcm_telemetry_config_t_init(bcm_telemetry_config_t
     18                                      *telemetry_config)
     19 {
     20     sal_memset(telemetry_config, 0, sizeof(bcm_telemetry_config_t));
     21 }
     22