diff options
Diffstat (limited to 'include/linux/mod_devicetable.h')
-rw-r--r-- | include/linux/mod_devicetable.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/linux/mod_devicetable.h b/include/linux/mod_devicetable.h index 14eaeeb46f41..448621c32e4d 100644 --- a/include/linux/mod_devicetable.h +++ b/include/linux/mod_devicetable.h | |||
@@ -788,4 +788,16 @@ struct tee_client_device_id { | |||
788 | uuid_t uuid; | 788 | uuid_t uuid; |
789 | }; | 789 | }; |
790 | 790 | ||
791 | /* WMI */ | ||
792 | |||
793 | #define WMI_MODULE_PREFIX "wmi:" | ||
794 | |||
795 | /** | ||
796 | * struct wmi_device_id - WMI device identifier | ||
797 | * @guid_string: 36 char string of the form fa50ff2b-f2e8-45de-83fa-65417f2f49ba | ||
798 | */ | ||
799 | struct wmi_device_id { | ||
800 | const char guid_string[UUID_STRING_LEN+1]; | ||
801 | }; | ||
802 | |||
791 | #endif /* LINUX_MOD_DEVICETABLE_H */ | 803 | #endif /* LINUX_MOD_DEVICETABLE_H */ |