Deleted Added
full compact
4c4
< * $Revision: 51 $
---
> * $Revision: 54 $
121d120
< #include "acinterp.h"
190c189
< * which has no checksum for some odd reason)
---
> * which has no checksum because it contains variable fields)
215c214
< ACPI_MOVE_UNALIGNED32_TO_32 (&Signature, &TableHeader->Signature);
---
> ACPI_MOVE_UNALIGNED32_TO_32 (&Signature, TableHeader->Signature);
263c262
< UINT32 *Size,
---
> ACPI_SIZE *Size,
267c266
< UINT32 TableSize = *Size;
---
> ACPI_SIZE TableSize = *Size;
289c288
< TableSize = Table->Length;
---
> TableSize = (ACPI_SIZE) Table->Length;
290a290,291
> #if 0
> /* We don't want to validate the header here. */
295a297
> #endif
300a303
> #if 0
306a310
> #endif
361c365
< Checksum, (char *) &TableHeader->Signature));
---
> Checksum, TableHeader->Signature));