diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/acpi/actypes.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/acpi/actypes.h b/include/acpi/actypes.h index a85bae968262..7520f420e4ee 100644 --- a/include/acpi/actypes.h +++ b/include/acpi/actypes.h | |||
@@ -1020,15 +1020,15 @@ u32 (*acpi_interface_handler) (acpi_string interface_name, u32 supported); | |||
1020 | 1020 | ||
1021 | /* Structures used for device/processor HID, UID, CID */ | 1021 | /* Structures used for device/processor HID, UID, CID */ |
1022 | 1022 | ||
1023 | struct acpica_device_id { | 1023 | struct acpi_pnp_device_id { |
1024 | u32 length; /* Length of string + null */ | 1024 | u32 length; /* Length of string + null */ |
1025 | char *string; | 1025 | char *string; |
1026 | }; | 1026 | }; |
1027 | 1027 | ||
1028 | struct acpica_device_id_list { | 1028 | struct acpi_pnp_device_id_list { |
1029 | u32 count; /* Number of IDs in Ids array */ | 1029 | u32 count; /* Number of IDs in Ids array */ |
1030 | u32 list_size; /* Size of list, including ID strings */ | 1030 | u32 list_size; /* Size of list, including ID strings */ |
1031 | struct acpica_device_id ids[1]; /* ID array */ | 1031 | struct acpi_pnp_device_id ids[1]; /* ID array */ |
1032 | }; | 1032 | }; |
1033 | 1033 | ||
1034 | /* | 1034 | /* |
@@ -1046,9 +1046,9 @@ struct acpi_device_info { | |||
1046 | u8 lowest_dstates[5]; /* _sx_w values: 0xFF indicates not valid */ | 1046 | u8 lowest_dstates[5]; /* _sx_w values: 0xFF indicates not valid */ |
1047 | u32 current_status; /* _STA value */ | 1047 | u32 current_status; /* _STA value */ |
1048 | u64 address; /* _ADR value */ | 1048 | u64 address; /* _ADR value */ |
1049 | struct acpica_device_id hardware_id; /* _HID value */ | 1049 | struct acpi_pnp_device_id hardware_id; /* _HID value */ |
1050 | struct acpica_device_id unique_id; /* _UID value */ | 1050 | struct acpi_pnp_device_id unique_id; /* _UID value */ |
1051 | struct acpica_device_id_list compatible_id_list; /* _CID list <must be last> */ | 1051 | struct acpi_pnp_device_id_list compatible_id_list; /* _CID list <must be last> */ |
1052 | }; | 1052 | }; |
1053 | 1053 | ||
1054 | /* Values for Flags field above (acpi_get_object_info) */ | 1054 | /* Values for Flags field above (acpi_get_object_info) */ |