Add firmware error record support.
diff --git a/cper-parse.c b/cper-parse.c
index 7772131..6ad7d2d 100644
--- a/cper-parse.c
+++ b/cper-parse.c
@@ -17,6 +17,7 @@
 #include "sections/cper-section-pcie.h"
 #include "sections/cper-section-pci-bus.h"
 #include "sections/cper-section-pci-dev.h"
+#include "sections/cper-section-firmware.h"
 
 //Private pre-definitions.
 json_object* cper_header_to_ir(EFI_COMMON_ERROR_RECORD_HEADER* header);
@@ -316,8 +317,8 @@
         result = cper_section_platform_memory2_to_ir(section, descriptor);
     else if (guid_equal(&descriptor->SectionType, &gEfiPcieErrorSectionGuid))
         result = cper_section_pcie_to_ir(section, descriptor);
-    // if (guid_equal(&descriptor->SectionType, &gEfiFirmwareErrorSectionGuid))
-    //     result = cper_section_firmware_error_to_ir(section);
+    else if (guid_equal(&descriptor->SectionType, &gEfiFirmwareErrorSectionGuid))
+        result = cper_section_firmware_to_ir(section, descriptor);
     else if (guid_equal(&descriptor->SectionType, &gEfiPciBusErrorSectionGuid))
         result = cper_section_pci_bus_to_ir(section, descriptor);
     else if (guid_equal(&descriptor->SectionType, &gEfiPciDevErrorSectionGuid))