blob: 2f990abe24e1f337689ed70a0ccb31e3b9bd5bc9 [file] [log] [blame]
Lawrence Tangdb1b7ce2022-07-06 15:40:26 +01001#ifndef CPER_SECTION_DMAR_IOMMU_H
2#define CPER_SECTION_DMAR_IOMMU_H
3
Karthik Rajagopalan255bd812024-09-06 14:36:34 -07004#ifdef __cplusplus
5extern "C" {
6#endif
7
Lawrence Tang5202bbb2022-08-12 14:54:36 +01008#include <json.h>
Lawrence Tangdb1b7ce2022-07-06 15:40:26 +01009#include "../edk/Cper.h"
10
John Chungf8fc7052024-05-03 20:05:29 +080011json_object *cper_section_dmar_iommu_to_ir(void *section);
12void ir_section_dmar_iommu_to_cper(json_object *section, FILE *out);
Lawrence Tangdb1b7ce2022-07-06 15:40:26 +010013
Karthik Rajagopalan255bd812024-09-06 14:36:34 -070014#ifdef __cplusplus
15}
16#endif
17
John Chungf8fc7052024-05-03 20:05:29 +080018#endif