blob: 0cbfb6b31387328cf99b381fc3e5e6c788eb6cb5 [file] [log] [blame]
Lawrence Tangcc0f5f32022-07-06 17:17:26 +01001/**
2 * Describes functions for converting Intel IPF CPER sections from binary and JSON format
3 * into an intermediate format.
4 *
5 * Author: Lawrence.Tang@arm.com
6 **/
7#include <stdio.h>
8#include "json.h"
9#include "../edk/Cper.h"
10#include "../cper-utils.h"
11#include "cper-section-ipf.h"
12
13//Converts a single Intel IPF error CPER section into JSON IR.
14json_object* cper_section_ipf_to_ir(void* section, EFI_ERROR_SECTION_DESCRIPTOR* descriptor)
15{
16 //... todo ...
17}