diff options
author | Mattias Jacobsson <2pi@mok.nu> | 2019-07-19 20:51:45 +0300 |
---|---|---|
committer | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2019-07-25 20:12:38 +0300 |
commit | 8732d85a69a0411f16a4b78df8fdc7b09c50a849 (patch) | |
tree | b94b043640e24f8573eab234c613b91cec0a443f /include/linux | |
parent | edbfe83def34153a05439ecb3352ae0bb65024de (diff) | |
download | linux-8732d85a69a0411f16a4b78df8fdc7b09c50a849.tar.xz |
platform/x86: wmi: add missing struct parameter description
Add a description for the context parameter in the struct wmi_device_id.
Reported-by: kbuild test robot <lkp@intel.com>
Fixes: a48e23385fcf ("platform/x86: wmi: add context pointer field to struct wmi_device_id")
Signed-off-by: Mattias Jacobsson <2pi@mok.nu>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/mod_devicetable.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/mod_devicetable.h b/include/linux/mod_devicetable.h index b2c1648f7e5d..5714fd35a83c 100644 --- a/include/linux/mod_devicetable.h +++ b/include/linux/mod_devicetable.h @@ -814,6 +814,7 @@ struct tee_client_device_id { /** * struct wmi_device_id - WMI device identifier * @guid_string: 36 char string of the form fa50ff2b-f2e8-45de-83fa-65417f2f49ba + * @context: pointer to driver specific data */ struct wmi_device_id { const char guid_string[UUID_STRING_LEN+1]; |