audk/DynamicTablesPkg/Library/Common/AmlLib/Api
Pierre Gondois 69ddfee1c3 DynamicTablesPkg: Add AmlAttachNode()
This function allows to add a node as the last node of a parent node
in an AML tree. For instance,
ASL code corresponding to NewNode:
  Name (_UID, 0)

ASL code corresponding to ParentNode:
  Device (PCI0) {
    Name(_HID, EISAID("PNP0A08"))
  }

"AmlAttachNode (ParentNode, NewNode)" will result in:
ASL code:
  Device (PCI0) {
    Name(_HID, EISAID("PNP0A08"))
    Name (_UID, 0)
  }

To: Sami Mujawar <sami.mujawar@arm.com>
To: Alexei Fedorov <Alexei.Fedorov@arm.com>
Signed-off-by: Pierre Gondois <Pierre.Gondois@arm.com>
Reviewed-by: Sami Mujawar <sami.mujawar@arm.com>
2021-12-13 12:48:42 +00:00
..
AmlApi.c DynamicTablesPkg: Add AmlAttachNode() 2021-12-13 12:48:42 +00:00
AmlApiHelper.c DynamicTablesPkg: Apply uncrustify changes 2021-12-07 17:24:28 +00:00
AmlApiHelper.h DynamicTablesPkg: Apply uncrustify changes 2021-12-07 17:24:28 +00:00
AmlResourceDataApi.c DynamicTablesPkg: Apply uncrustify changes 2021-12-07 17:24:28 +00:00