mirror of
https://github.com/opnsense/src.git
synced 2026-06-10 17:22:46 -04:00
Fix typo; CTLFLAG_RO -> CTLFLAG_RD.
This commit is contained in:
parent
c8dab10220
commit
dd081ed5d0
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue