diff options
Diffstat (limited to 'drivers/platform/x86/wmi.c')
-rw-r--r-- | drivers/platform/x86/wmi.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/drivers/platform/x86/wmi.c b/drivers/platform/x86/wmi.c index b08ffb769cbe..f3be1c008856 100644 --- a/drivers/platform/x86/wmi.c +++ b/drivers/platform/x86/wmi.c | |||
@@ -146,6 +146,28 @@ static bool find_guid(const char *guid_string, struct wmi_block **out) | |||
146 | return false; | 146 | return false; |
147 | } | 147 | } |
148 | 148 | ||
149 | static const void *find_guid_context(struct wmi_block *wblock, | ||
150 | struct wmi_driver *wdriver) | ||
151 | { | ||
152 | const struct wmi_device_id *id; | ||
153 | uuid_le guid_input; | ||
154 | |||
155 | if (wblock == NULL || wdriver == NULL) | ||
156 | return NULL; | ||
157 | if (wdriver->id_table == NULL) | ||
158 | return NULL; | ||
159 | |||
160 | id = wdriver->id_table; | ||
161 | while (*id->guid_string) { | ||
162 | if (uuid_le_to_bin(id->guid_string, &guid_input)) | ||
163 | continue; | ||
164 | if (!memcmp(wblock->gblock.guid, &guid_input, 16)) | ||
165 | return id->context; | ||
166 | id++; | ||
167 | } | ||
168 | return NULL; | ||
169 | } | ||
170 | |||
149 | static int get_subobj_info(acpi_handle handle, const char *pathname, | 171 | static int get_subobj_info(acpi_handle handle, const char *pathname, |
150 | struct acpi_device_info **info) | 172 | struct acpi_device_info **info) |
151 | { | 173 | { |