cpri_diag_cint_data.c (2076B)
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 */ 8 9 /* 10 * DO NOT EDIT THIS FILE! 11 */ 12 13 #if defined(INCLUDE_LIB_CINT) 14 15 #include <cint_config.h> 16 #include <cint_types.h> 17 #include <cint_porting.h> 18 19 #if defined(CPRI_DIAG_SUPPORT) 20 21 #include <phymod/phymod.h> 22 #include <phymod/phymod_types.h> 23 #include <bcm/types.h> 24 #include <bcm/cpri.h> 25 #include <appl/diag/cpri/cpri_diag.h> 26 27 /* Macros section */ 28 29 /* Functions section */ 30 CINT_FWRAPPER_CREATE_RP2(int, int, 0, 0, 31 sv_testing_polling, 32 int, int, unit, 0, 0, 33 bcm_port_t, bcm_port_t, port, 0, 0); 34 35 CINT_FWRAPPER_CREATE_RP2(int, int, 0, 0, 36 cpri_diag_test_register_interrupt_callback, 37 int, int, unit, 0, 0, 38 bcm_port_t, bcm_port_t, port, 0, 0); 39 40 41 /* Functions and Macros mapping */ 42 static cint_function_t __cint_functions[] = 43 { 44 CINT_FWRAPPER_ENTRY(sv_testing_polling), 45 CINT_FWRAPPER_ENTRY(cpri_diag_test_register_interrupt_callback), 46 { NULL } 47 }; 48 49 /* Functions pointers section */ 50 static cint_function_pointer_t __cint_function_pointers[1]; 51 52 53 54 static cint_function_pointer_t __cint_function_pointers[] = 55 { 56 { NULL } 57 }; 58 59 /* Structs section */ 60 61 62 static cint_struct_type_t __cint_structures[] = 63 { 64 { NULL } 65 }; 66 67 68 /* Enums section */ 69 70 static cint_enum_type_t __cint_enums[] = 71 { 72 { NULL } 73 }; 74 75 /* Defines section */ 76 static cint_constants_t __cint_constants[] = 77 { 78 { NULL } 79 }; 80 81 82 /* Typedefs section */ 83 static cint_parameter_desc_t __cint_typedefs[] = 84 { 85 { NULL } 86 }; 87 88 89 cint_data_t cpri_diag_cint_data = 90 { 91 NULL, 92 __cint_functions, 93 __cint_structures, 94 __cint_enums, 95 __cint_typedefs, 96 __cint_constants, 97 __cint_function_pointers, 98 }; 99 100 101 #endif /* defined(CPRI_DIAG_SUPPORT) */ 102 103 #endif /* defined(INCLUDE_LIB_CINT) */