Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F108593332
D36406.id110049.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
D36406.id110049.diff
View Options
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
Details
Attached
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)
Attached To
Mode
D36406: ACPI: Report these errors always
Attached
Detach File
Event Timeline
Log In to Comment