Skip to content

Commit 6db176e

Browse files
committed
ACPI: TAD: Update the driver description comment
Update the preamble comment describing the driver to match the code after previous changes along with the copyright information. No functional impact. Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com> Link: https://patch.msgid.link/23034847.EfDdHjke4D@rafael.j.wysocki
1 parent 8a1e7f4 commit 6db176e

1 file changed

Lines changed: 8 additions & 5 deletions

File tree

drivers/acpi/acpi_tad.c

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,10 @@
22
/*
33
* ACPI Time and Alarm (TAD) Device Driver
44
*
5-
* Copyright (C) 2018 Intel Corporation
5+
* Copyright (C) 2018 - 2026 Intel Corporation
66
* Author: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
77
*
8-
* This driver is based on Section 9.18 of the ACPI 6.2 specification revision.
9-
*
10-
* It only supports the system wakeup capabilities of the TAD.
8+
* This driver is based on ACPI 6.6, Section 9.17.
119
*
1210
* Provided are sysfs attributes, available under the TAD platform device,
1311
* allowing user space to manage the AC and DC wakeup timers of the TAD:
@@ -18,6 +16,11 @@
1816
*
1917
* The wakeup events handling and power management of the TAD is expected to
2018
* be taken care of by the ACPI PM domain attached to its platform device.
19+
*
20+
* If the TAD supports the get/set real time features, as indicated by the
21+
* capability mask returned by _GCP under the TAD object, additional sysfs
22+
* attributes are created allowing the real time to be set and read and an RTC
23+
* class device is registered under the TAD platform device.
2124
*/
2225

2326
#include <linux/acpi.h>
@@ -32,7 +35,7 @@ MODULE_DESCRIPTION("ACPI Time and Alarm (TAD) Device Driver");
3235
MODULE_LICENSE("GPL v2");
3336
MODULE_AUTHOR("Rafael J. Wysocki");
3437

35-
/* ACPI TAD capability flags (ACPI 6.2, Section 9.18.2) */
38+
/* ACPI TAD capability flags (ACPI 6.6, Section 9.17.2) */
3639
#define ACPI_TAD_AC_WAKE BIT(0)
3740
#define ACPI_TAD_DC_WAKE BIT(1)
3841
#define ACPI_TAD_RT BIT(2)

0 commit comments

Comments
 (0)