TianoCore EDK2 master
Loading...
Searching...
No Matches
SsdtParser.c
Go to the documentation of this file.
1
12#include <Library/UefiLib.h>
13#include "AcpiParser.h"
14#include "AcpiTableParser.h"
15
28VOID
29EFIAPI
31 IN BOOLEAN Trace,
32 IN UINT8 *Ptr,
33 IN UINT32 AcpiTableLength,
34 IN UINT8 AcpiTableRevision
35 )
36{
37 if (!Trace) {
38 return;
39 }
40
41 DumpAcpiHeader (Ptr);
42}
UINT32 EFIAPI DumpAcpiHeader(IN UINT8 *Ptr)
Definition: AcpiParser.c:885
#define IN
Definition: Base.h:279
VOID EFIAPI ParseAcpiSsdt(IN BOOLEAN Trace, IN UINT8 *Ptr, IN UINT32 AcpiTableLength, IN UINT8 AcpiTableRevision)
Definition: SsdtParser.c:30