diff options
author | 2019-05-11 14:59:52 +0000 | |
---|---|---|
committer | 2019-05-11 14:59:52 +0000 | |
commit | 57d45d6a724a7e7bd73238499a5db32558e85795 (patch) | |
tree | 41fbf84dad8438a6caddb6fed285be8a1514466a | |
parent | Implement interrupt controller functionality in the Rockchip (diff) | |
download | wireguard-openbsd-57d45d6a724a7e7bd73238499a5db32558e85795.tar.xz wireguard-openbsd-57d45d6a724a7e7bd73238499a5db32558e85795.zip |
Fix incorrect error message.
ok kettenis@
-rw-r--r-- | sys/dev/acpi/acpi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/acpi/acpi.c b/sys/dev/acpi/acpi.c index 1add79c9585..3bf3e9739a8 100644 --- a/sys/dev/acpi/acpi.c +++ b/sys/dev/acpi/acpi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: acpi.c,v 1.364 2019/05/08 15:32:02 tedu Exp $ */ +/* $OpenBSD: acpi.c,v 1.365 2019/05/11 14:59:52 lteo Exp $ */ /* * Copyright (c) 2005 Thorsten Lockert <tholo@sigmasoft.com> * Copyright (c) 2005 Jordan Hargrave <jordan@openbsd.org> @@ -1349,7 +1349,7 @@ acpi_loadtables(struct acpi_softc *sc, struct acpi_rsdp *rsdp) sdt = acpi_maptable(sc, rsdp->rsdp_xsdt, NULL, NULL, NULL, 0); if (sdt == NULL) { - printf("couldn't map rsdt\n"); + printf("couldn't map xsdt\n"); return (ENOMEM); } |