acpi_thermal.c (c573e654b7769ae90a8ae4a34eed0b3a36f439c3) acpi_thermal.c (3273b0052350a01f85ee60a6a2e31adb31d4a5a6)
1/*-
2 * Copyright (c) 2000, 2001 Michael Smith
3 * Copyright (c) 2000 BSDi
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

--- 108 unchanged lines hidden (view full) ---

117};
118
119static driver_t acpi_tz_driver = {
120 "acpi_tz",
121 acpi_tz_methods,
122 sizeof(struct acpi_tz_softc),
123};
124
1/*-
2 * Copyright (c) 2000, 2001 Michael Smith
3 * Copyright (c) 2000 BSDi
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

--- 108 unchanged lines hidden (view full) ---

117};
118
119static driver_t acpi_tz_driver = {
120 "acpi_tz",
121 acpi_tz_methods,
122 sizeof(struct acpi_tz_softc),
123};
124
125devclass_t acpi_tz_devclass;
125static devclass_t acpi_tz_devclass;
126DRIVER_MODULE(acpi_tz, acpi, acpi_tz_driver, acpi_tz_devclass, 0, 0);
127
128static struct sysctl_ctx_list acpi_tz_sysctl_ctx;
129static struct sysctl_oid *acpi_tz_sysctl_tree;
130
131static int acpi_tz_min_runtime = 0;/* minimum cooling run time */
132static int acpi_tz_polling_rate = TZ_POLLRATE;
133

--- 632 unchanged lines hidden ---
126DRIVER_MODULE(acpi_tz, acpi, acpi_tz_driver, acpi_tz_devclass, 0, 0);
127
128static struct sysctl_ctx_list acpi_tz_sysctl_ctx;
129static struct sysctl_oid *acpi_tz_sysctl_tree;
130
131static int acpi_tz_min_runtime = 0;/* minimum cooling run time */
132static int acpi_tz_polling_rate = TZ_POLLRATE;
133

--- 632 unchanged lines hidden ---