1 #ifndef CPER_SECTION_DMAR_IOMMU_H 2 #define CPER_SECTION_DMAR_IOMMU_H 3 4 #ifdef __cplusplus 5 extern "C" { 6 #endif 7 8 #include <json.h> 9 #include "Cper.h" 10 11 json_object *cper_section_dmar_iommu_to_ir(void *section); 12 void ir_section_dmar_iommu_to_cper(json_object *section, FILE *out); 13 14 #ifdef __cplusplus 15 } 16 #endif 17 18 #endif 19