From dd081ed5d09f9745dcff373d4eb9f72ecfe00cf0 Mon Sep 17 00:00:00 2001 From: Mitsuru IWASAKI Date: Sun, 2 Sep 2001 06:28:20 +0000 Subject: [PATCH] Fix typo; CTLFLAG_RO -> CTLFLAG_RD. --- sys/dev/acpica/acpi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/acpica/acpi.c b/sys/dev/acpica/acpi.c index f34ca6acc1c..9c6540a77aa 100644 --- a/sys/dev/acpica/acpi.c +++ b/sys/dev/acpica/acpi.c @@ -168,7 +168,7 @@ MODULE_VERSION(acpi, 100); SYSCTL_INT(_debug, OID_AUTO, acpi_debug_layer, CTLFLAG_RW, &AcpiDbgLayer, 0, ""); SYSCTL_INT(_debug, OID_AUTO, acpi_debug_level, CTLFLAG_RW, &AcpiDbgLevel, 0, ""); static int acpi_ca_version = ACPI_CA_VERSION; -SYSCTL_INT(_debug, OID_AUTO, acpi_ca_version, CTLFLAG_RO, &acpi_ca_version, 0, ""); +SYSCTL_INT(_debug, OID_AUTO, acpi_ca_version, CTLFLAG_RD, &acpi_ca_version, 0, ""); /* * ACPI can only be loaded as a module by the loader; activating it after