aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2019-03-10 16:16:37 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2019-03-10 16:16:37 -0400
commitdbbdf54c7206bf3f201f9ddaa5f4dd87835271cc (patch)
tree941dbf0dada73344acdfe891ec1d50a01316566d /include/linux
parent45ba8d5d061b13494c2a7a7652d51b9da3d9e77a (diff)
parent9c22cc020db637850ba47a14a598d09f706f19ad (diff)
Merge tag 'platform-drivers-x86-v5.1-1' of git://git.infradead.org/linux-platform-drivers-x86
Pull x86 platform driver updates from Darren Hart: - use MODULE_DEVICE_TABLE across several wmi drivers, keeping wmi_device_id and MODULE_ALIAS() declarations in sync - add several Ideapad models to the no_hw_rfkill list - add support for new Mellanox platforms, including new fan and LED functionality - address Dell keyboard backlight change event and power button release issues - update dell_rbu to use appropriate memory allocation mechanisms - several small fixes and Ice Lake support for intel_pmc_core - fix a suspend regression for Cherry Trail based devices in intel_int0002_vgpio - a few other routine fixes * tag 'platform-drivers-x86-v5.1-1' of git://git.infradead.org/linux-platform-drivers-x86: (50 commits) MAINTAINERS: Include mlxreg.h in Mellanox Platform Driver files platform/x86: ideapad-laptop: Add S130-14IGM to no_hw_rfkill list platform/x86: mlx-platform: Fix access mode for fan_dir attribute platform/x86: mlx-platform: Add UID LED for the next generation systems platform/x86: mlx-platform: Add extra CPLD for next generation systems platform/x86: wmi-bmof: use MODULE_DEVICE_TABLE() instead of MODULE_ALIAS() platform/x86: intel-wmi-thunderbolt: use MODULE_DEVICE_TABLE() instead of MODULE_ALIAS() platform/x86: huawei-wmi: use MODULE_DEVICE_TABLE() instead of MODULE_ALIAS() platform/x86: dell-wmi: use MODULE_DEVICE_TABLE() instead of MODULE_ALIAS() platform/x86: dell-wmi-descriptor: use MODULE_DEVICE_TABLE() instead of MODULE_ALIAS() platform/x86: dell-smbios-wmi: use MODULE_DEVICE_TABLE() instead of MODULE_ALIAS() platform/x86: wmi: add WMI support to MODULE_DEVICE_TABLE() platform/x86: wmi: move struct wmi_device_id to mod_devicetable.h modpost: file2alias: define size of alias platform/x86: touchscreen_dmi: Add info for the CHUWI Hi10 Air tablet platform/x86: ideapad-laptop: Add Ideapad 530S-14ARR to no_hw_rfkill list platform/x86: ideapad-laptop: Add Yoga C930 to no_hw_rfkill_list platform/x86: intel_pmc_core: Quirk to ignore XTAL shutdown platform/x86: intel_pmc_core: Add Package cstates residency info platform/x86: intel_pmc_core: Add ICL platform support ...
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/mod_devicetable.h12
-rw-r--r--include/linux/platform_data/mlxreg.h6
-rw-r--r--include/linux/wmi.h5
3 files changed, 17 insertions, 6 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 */
799struct 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 */
diff --git a/include/linux/platform_data/mlxreg.h b/include/linux/platform_data/mlxreg.h
index 19f5cb618c55..1b2f86f96743 100644
--- a/include/linux/platform_data/mlxreg.h
+++ b/include/linux/platform_data/mlxreg.h
@@ -61,6 +61,7 @@ struct mlxreg_hotplug_device {
61 * @reg: attribute register; 61 * @reg: attribute register;
62 * @mask: attribute access mask; 62 * @mask: attribute access mask;
63 * @bit: attribute effective bit; 63 * @bit: attribute effective bit;
64 * @capability: attribute capability register;
64 * @mode: access mode; 65 * @mode: access mode;
65 * @np - pointer to node platform associated with attribute; 66 * @np - pointer to node platform associated with attribute;
66 * @hpdev - hotplug device data; 67 * @hpdev - hotplug device data;
@@ -72,6 +73,7 @@ struct mlxreg_core_data {
72 u32 reg; 73 u32 reg;
73 u32 mask; 74 u32 mask;
74 u32 bit; 75 u32 bit;
76 u32 capability;
75 umode_t mode; 77 umode_t mode;
76 struct device_node *np; 78 struct device_node *np;
77 struct mlxreg_hotplug_device hpdev; 79 struct mlxreg_hotplug_device hpdev;
@@ -107,9 +109,9 @@ struct mlxreg_core_item {
107/** 109/**
108 * struct mlxreg_core_platform_data - platform data: 110 * struct mlxreg_core_platform_data - platform data:
109 * 111 *
110 * @led_data: led private data; 112 * @data: instance private data;
111 * @regmap: register map of parent device; 113 * @regmap: register map of parent device;
112 * @counter: number of led instances; 114 * @counter: number of instances;
113 */ 115 */
114struct mlxreg_core_platform_data { 116struct mlxreg_core_platform_data {
115 struct mlxreg_core_data *data; 117 struct mlxreg_core_data *data;
diff --git a/include/linux/wmi.h b/include/linux/wmi.h
index 4757cb5077e5..592f81afecbb 100644
--- a/include/linux/wmi.h
+++ b/include/linux/wmi.h
@@ -18,6 +18,7 @@
18 18
19#include <linux/device.h> 19#include <linux/device.h>
20#include <linux/acpi.h> 20#include <linux/acpi.h>
21#include <linux/mod_devicetable.h>
21#include <uapi/linux/wmi.h> 22#include <uapi/linux/wmi.h>
22 23
23struct wmi_device { 24struct wmi_device {
@@ -39,10 +40,6 @@ extern union acpi_object *wmidev_block_query(struct wmi_device *wdev,
39 40
40extern int set_required_buffer_size(struct wmi_device *wdev, u64 length); 41extern int set_required_buffer_size(struct wmi_device *wdev, u64 length);
41 42
42struct wmi_device_id {
43 const char *guid_string;
44};
45
46struct wmi_driver { 43struct wmi_driver {
47 struct device_driver driver; 44 struct device_driver driver;
48 const struct wmi_device_id *id_table; 45 const struct wmi_device_id *id_table;