Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ACPI: property: Add reference to UEFI DSD Guide

The UEFI DSD Guide specifies a number of GUIDs supported by the _DSD
parser. Point to the DSD Guide in the documentation.

Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>

authored by

Sakari Ailus and committed by
Rafael J. Wysocki
49c192d2 ed30a4a5

+8 -3
+8 -3
drivers/acpi/property.c
··· 31 31 * not defined without a warning. For instance if any of the properties 32 32 * from different GUID appear in a property list of another, it will be 33 33 * accepted by the kernel. Firmware validation tools should catch these. 34 + * 35 + * References: 36 + * 37 + * [1] UEFI DSD Guide. 38 + * https://github.com/UEFI/DSD-Guide/blob/main/src/dsd-guide.adoc 34 39 */ 35 40 static const guid_t prp_guids[] = { 36 - /* ACPI _DSD device properties GUID: daffd814-6eba-4d8c-8a91-bc9bbf4aa301 */ 41 + /* ACPI _DSD device properties GUID [1]: daffd814-6eba-4d8c-8a91-bc9bbf4aa301 */ 37 42 GUID_INIT(0xdaffd814, 0x6eba, 0x4d8c, 38 43 0x8a, 0x91, 0xbc, 0x9b, 0xbf, 0x4a, 0xa3, 0x01), 39 44 /* Hotplug in D3 GUID: 6211e2c0-58a3-4af3-90e1-927a4e0c55a4 */ ··· 58 53 0xa5, 0x61, 0x99, 0xa5, 0x18, 0x97, 0x62, 0xd0), 59 54 }; 60 55 61 - /* ACPI _DSD data subnodes GUID: dbb8e3e6-5886-4ba6-8795-1319f52a966b */ 56 + /* ACPI _DSD data subnodes GUID [1]: dbb8e3e6-5886-4ba6-8795-1319f52a966b */ 62 57 static const guid_t ads_guid = 63 58 GUID_INIT(0xdbb8e3e6, 0x5886, 0x4ba6, 64 59 0x87, 0x95, 0x13, 0x19, 0xf5, 0x2a, 0x96, 0x6b); 65 60 66 - /* ACPI _DSD data buffer GUID: edb12dd0-363d-4085-a3d2-49522ca160c4 */ 61 + /* ACPI _DSD data buffer GUID [1]: edb12dd0-363d-4085-a3d2-49522ca160c4 */ 67 62 static const guid_t buffer_prop_guid = 68 63 GUID_INIT(0xedb12dd0, 0x363d, 0x4085, 69 64 0xa3, 0xd2, 0x49, 0x52, 0x2c, 0xa1, 0x60, 0xc4);