summaryrefslogtreecommitdiff
path: root/source/components/tables/tbxfroot.c
diff options
context:
space:
mode:
authorrmoore1 <rmoore1>2005-07-29 21:09:31 +0000
committerrmoore1 <rmoore1>2005-07-29 21:09:31 +0000
commit89fa1e21f90a67420e0b8b992021f76a70fc7236 (patch)
treef713cff376813495c3e742d7ba4042acf36e0d24 /source/components/tables/tbxfroot.c
parent4fcda2bf3a2e801868088897000758b8856314b4 (diff)
downloadacpica-89fa1e21f90a67420e0b8b992021f76a70fc7236.tar.gz
Renamed checksum generate function
Diffstat (limited to 'source/components/tables/tbxfroot.c')
-rw-r--r--source/components/tables/tbxfroot.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/components/tables/tbxfroot.c b/source/components/tables/tbxfroot.c
index 99a2414c1..7574c896c 100644
--- a/source/components/tables/tbxfroot.c
+++ b/source/components/tables/tbxfroot.c
@@ -1,7 +1,7 @@
/******************************************************************************
*
* Module Name: tbxfroot - Find the root ACPI table (RSDT)
- * $Revision: 1.89 $
+ * $Revision: 1.90 $
*
*****************************************************************************/
@@ -167,7 +167,7 @@ AcpiTbValidateRsdp (
/* Check the standard checksum */
- if (AcpiTbChecksum (Rsdp, ACPI_RSDP_CHECKSUM_LENGTH) != 0)
+ if (AcpiTbGenerateChecksum (Rsdp, ACPI_RSDP_CHECKSUM_LENGTH) != 0)
{
return (AE_BAD_CHECKSUM);
}
@@ -175,7 +175,7 @@ AcpiTbValidateRsdp (
/* Check extended checksum if table version >= 2 */
if ((Rsdp->Revision >= 2) &&
- (AcpiTbChecksum (Rsdp, ACPI_RSDP_XCHECKSUM_LENGTH) != 0))
+ (AcpiTbGenerateChecksum (Rsdp, ACPI_RSDP_XCHECKSUM_LENGTH) != 0))
{
return (AE_BAD_CHECKSUM);
}