Skip to content

Commit 49c192d

Browse files
Sakari Ailusrafaeljw
authored andcommitted
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 <[email protected]> Reviewed-by: Andy Shevchenko <[email protected]> Signed-off-by: Rafael J. Wysocki <[email protected]>
1 parent ed30a4a commit 49c192d

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

drivers/acpi/property.c

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,14 @@ static int acpi_data_get_property_array(const struct acpi_device_data *data,
3131
* not defined without a warning. For instance if any of the properties
3232
* from different GUID appear in a property list of another, it will be
3333
* 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
3439
*/
3540
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 */
3742
GUID_INIT(0xdaffd814, 0x6eba, 0x4d8c,
3843
0x8a, 0x91, 0xbc, 0x9b, 0xbf, 0x4a, 0xa3, 0x01),
3944
/* Hotplug in D3 GUID: 6211e2c0-58a3-4af3-90e1-927a4e0c55a4 */
@@ -53,12 +58,12 @@ static const guid_t prp_guids[] = {
5358
0xa5, 0x61, 0x99, 0xa5, 0x18, 0x97, 0x62, 0xd0),
5459
};
5560

56-
/* ACPI _DSD data subnodes GUID: dbb8e3e6-5886-4ba6-8795-1319f52a966b */
61+
/* ACPI _DSD data subnodes GUID [1]: dbb8e3e6-5886-4ba6-8795-1319f52a966b */
5762
static const guid_t ads_guid =
5863
GUID_INIT(0xdbb8e3e6, 0x5886, 0x4ba6,
5964
0x87, 0x95, 0x13, 0x19, 0xf5, 0x2a, 0x96, 0x6b);
6065

61-
/* ACPI _DSD data buffer GUID: edb12dd0-363d-4085-a3d2-49522ca160c4 */
66+
/* ACPI _DSD data buffer GUID [1]: edb12dd0-363d-4085-a3d2-49522ca160c4 */
6267
static const guid_t buffer_prop_guid =
6368
GUID_INIT(0xedb12dd0, 0x363d, 0x4085,
6469
0xa3, 0xd2, 0x49, 0x52, 0x2c, 0xa1, 0x60, 0xc4);

0 commit comments

Comments
 (0)