diff options
| author | Mike Smith <msmith@FreeBSD.org> | 2001-09-01 22:41:53 +0000 |
|---|---|---|
| committer | Mike Smith <msmith@FreeBSD.org> | 2001-09-01 22:41:53 +0000 |
| commit | dde24897d2fed06031eee9dc62db605b1b753c01 (patch) | |
| tree | 3575e38a01d19ab1b11c055016973a56aadf0a3c /sys | |
| parent | bd9dc97512fff91e14353a573b5ffbb200bf16bf (diff) | |
Notes
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/dev/acpica/acpi.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/dev/acpica/acpi.c b/sys/dev/acpica/acpi.c index fe67b1b10565..f34ca6acc1c0 100644 --- a/sys/dev/acpica/acpi.c +++ b/sys/dev/acpica/acpi.c @@ -163,9 +163,12 @@ static driver_t acpi_driver = { devclass_t acpi_devclass; DRIVER_MODULE(acpi, nexus, acpi_driver, acpi_devclass, acpi_modevent, 0); +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, ""); /* * ACPI can only be loaded as a module by the loader; activating it after |
