Page MenuHomeFreeBSD

D36406.id110049.diff
No OneTemporary

D36406.id110049.diff

diff --git a/sys/amd64/acpica/acpi_machdep.c b/sys/amd64/acpica/acpi_machdep.c
--- a/sys/amd64/acpica/acpi_machdep.c
+++ b/sys/amd64/acpica/acpi_machdep.c
@@ -184,8 +184,7 @@
return (0);
rsdp = pmap_mapbios(rsdp_ptr, sizeof(ACPI_TABLE_RSDP));
if (rsdp == NULL) {
- if (bootverbose)
- printf("ACPI: Failed to map RSDP\n");
+ printf("ACPI: Failed to map RSDP\n");
return (0);
}
@@ -201,16 +200,14 @@
* an additional checksum that we verify first.
*/
if (AcpiTbChecksum((UINT8 *)rsdp, ACPI_RSDP_XCHECKSUM_LENGTH)) {
- if (bootverbose)
- printf("ACPI: RSDP failed extended checksum\n");
+ printf("ACPI: RSDP failed extended checksum\n");
pmap_unmapbios((vm_offset_t)rsdp,
sizeof(ACPI_TABLE_RSDP));
return (0);
}
xsdt = map_table(rsdp->XsdtPhysicalAddress, ACPI_SIG_XSDT);
if (xsdt == NULL) {
- if (bootverbose)
- printf("ACPI: Failed to map XSDT\n");
+ printf("ACPI: Failed to map XSDT\n");
pmap_unmapbios((vm_offset_t)rsdp,
sizeof(ACPI_TABLE_RSDP));
return (0);
@@ -226,8 +223,7 @@
} else {
rsdt = map_table(rsdp->RsdtPhysicalAddress, ACPI_SIG_RSDT);
if (rsdt == NULL) {
- if (bootverbose)
- printf("ACPI: Failed to map RSDT\n");
+ printf("ACPI: Failed to map RSDT\n");
pmap_unmapbios((vm_offset_t)rsdp,
sizeof(ACPI_TABLE_RSDP));
return (0);
diff --git a/sys/arm64/acpica/acpi_machdep.c b/sys/arm64/acpica/acpi_machdep.c
--- a/sys/arm64/acpica/acpi_machdep.c
+++ b/sys/arm64/acpica/acpi_machdep.c
@@ -161,8 +161,7 @@
return (0);
rsdp = pmap_mapbios(rsdp_ptr, sizeof(ACPI_TABLE_RSDP));
if (rsdp == NULL) {
- if (bootverbose)
- printf("ACPI: Failed to map RSDP\n");
+ printf("ACPI: Failed to map RSDP\n");
return (0);
}
@@ -174,16 +173,14 @@
* an additional checksum that we verify first.
*/
if (AcpiTbChecksum((UINT8 *)rsdp, ACPI_RSDP_XCHECKSUM_LENGTH)) {
- if (bootverbose)
- printf("ACPI: RSDP failed extended checksum\n");
+ printf("ACPI: RSDP failed extended checksum\n");
pmap_unmapbios((vm_offset_t)rsdp,
sizeof(ACPI_TABLE_RSDP));
return (0);
}
xsdt = map_table(rsdp->XsdtPhysicalAddress, ACPI_SIG_XSDT);
if (xsdt == NULL) {
- if (bootverbose)
- printf("ACPI: Failed to map XSDT\n");
+ printf("ACPI: Failed to map XSDT\n");
pmap_unmapbios((vm_offset_t)rsdp,
sizeof(ACPI_TABLE_RSDP));
return (0);

File Metadata

Mime Type
text/plain
Expires
Mon, Jan 27, 6:08 PM (3 h, 11 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
16203068
Default Alt Text
D36406.id110049.diff (2 KB)

Event Timeline