tbdata.c (e5e1f58a87fc8cfe8597a1cf14ee4de2c7c16dd8) tbdata.c (278f0de60d655b6b28d4c92affe3603a49228645)
1/******************************************************************************
2 *
3 * Module Name: tbdata - Table manager data structure functions
4 *
5 *****************************************************************************/
6
7/******************************************************************************
8 *

--- 662 unchanged lines hidden (view full) ---

671 if (ACPI_FAILURE (Status))
672 {
673 return_ACPI_STATUS (AE_NO_MEMORY);
674 }
675
676 /* If a particular signature is expected (DSDT/FACS), it must match */
677
678 if (Signature &&
1/******************************************************************************
2 *
3 * Module Name: tbdata - Table manager data structure functions
4 *
5 *****************************************************************************/
6
7/******************************************************************************
8 *

--- 662 unchanged lines hidden (view full) ---

671 if (ACPI_FAILURE (Status))
672 {
673 return_ACPI_STATUS (AE_NO_MEMORY);
674 }
675
676 /* If a particular signature is expected (DSDT/FACS), it must match */
677
678 if (Signature &&
679 !ACPI_COMPARE_NAME (&TableDesc->Signature, Signature))
679 !ACPI_COMPARE_NAMESEG (&TableDesc->Signature, Signature))
680 {
681 ACPI_BIOS_ERROR ((AE_INFO,
682 "Invalid signature 0x%X for ACPI table, expected [%s]",
683 TableDesc->Signature.Integer, Signature));
684 Status = AE_BAD_SIGNATURE;
685 goto InvalidateAndExit;
686 }
687

--- 660 unchanged lines hidden ---
680 {
681 ACPI_BIOS_ERROR ((AE_INFO,
682 "Invalid signature 0x%X for ACPI table, expected [%s]",
683 TableDesc->Signature.Integer, Signature));
684 Status = AE_BAD_SIGNATURE;
685 goto InvalidateAndExit;
686 }
687

--- 660 unchanged lines hidden ---