Changeset 19b3cc6 in mainline for kernel/genarch/src/acpi/acpi.c
- Timestamp:
- 2014-01-17T23:12:10Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade
- Children:
- e26a9d95
- Parents:
- fddffb2 (diff), facc34d (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/genarch/src/acpi/acpi.c
rfddffb2 r19b3cc6 41 41 #include <mm/page.h> 42 42 #include <mm/km.h> 43 #include < print.h>43 #include <log.h> 44 44 45 45 #define RSDP_SIGNATURE "RSD PTR " … … 211 211 212 212 if ((acpi_rsdt) && (!acpi_sdt_check((uint8_t *) acpi_rsdt))) { 213 printf("RSDT: bad checksum\n");213 log(LF_ARCH, LVL_ERROR, "RSDT: bad checksum"); 214 214 return; 215 215 } 216 216 217 217 if ((acpi_xsdt) && (!acpi_sdt_check((uint8_t *) acpi_xsdt))) { 218 printf("XSDT: bad checksum\n");218 log(LF_ARCH, LVL_ERROR, "XSDT: bad checksum"); 219 219 return; 220 220 }
Note:
See TracChangeset
for help on using the changeset viewer.