Message ID | 20240318215732.322798-2-W_Armin@gmx.de (mailing list archive) |
---|---|
State | Deferred |
Headers | show |
Series | hwmon: (hp-wmi-sensors) Support autoloading | expand |
diff --git a/drivers/hwmon/hp-wmi-sensors.c b/drivers/hwmon/hp-wmi-sensors.c index b5325d0e72b9..493a3b3e86f3 100644 --- a/drivers/hwmon/hp-wmi-sensors.c +++ b/drivers/hwmon/hp-wmi-sensors.c @@ -25,6 +25,7 @@ #include <linux/debugfs.h> #include <linux/hwmon.h> #include <linux/jiffies.h> +#include <linux/module.h> #include <linux/mutex.h> #include <linux/nls.h> #include <linux/units.h> @@ -2072,6 +2073,7 @@ static const struct wmi_device_id hp_wmi_sensors_id_table[] = { { HP_WMI_NUMERIC_SENSOR_GUID, NULL }, {}, }; +MODULE_DEVICE_TABLE(wmi, hp_wmi_sensors_id_table); static struct wmi_driver hp_wmi_sensors_driver = { .driver = { .name = "hp-wmi-sensors" },
Register the WMI id table with MODULE_DEVICE_TABLE() so that the driver can automatically be leaded on supported machines. Compile-tested only. Fixes: 23902f98f8d4 ("hwmon: add HP WMI Sensors driver") Signed-off-by: Armin Wolf <W_Armin@gmx.de> --- drivers/hwmon/hp-wmi-sensors.c | 2 ++ 1 file changed, 2 insertions(+) -- 2.39.2