Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5b812ea5 authored by Alexander Holler's avatar Alexander Holler Committed by Jonathan Cameron
Browse files

iio: hid-sensor-als: add module alias for autoload



Add a MODULE_DEVICE_TABLE in order to let hotplug mechanisms automatically
load the driver.

This makes it also possible to use the usual driver name instead of
HID-SENSOR-2000xx which isn't very descriptive in kernel messages.

Signed-off-by: default avatarAlexander Holler <holler@ahsoftware.de>
Acked-by: default avatarSrinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
Signed-off-by: default avatarJonathan Cameron <jic23@kernel.org>
parent a411e735
Loading
Loading
Loading
Loading
+11 −5
Original line number Original line Diff line number Diff line
@@ -30,10 +30,6 @@
#include <linux/iio/triggered_buffer.h>
#include <linux/iio/triggered_buffer.h>
#include "../common/hid-sensors/hid-sensor-trigger.h"
#include "../common/hid-sensors/hid-sensor-trigger.h"


/*Format: HID-SENSOR-usage_id_in_hex*/
/*Usage ID from spec for Ambiant-Light: 0x200041*/
#define DRIVER_NAME "HID-SENSOR-200041"

#define CHANNEL_SCAN_INDEX_ILLUM 0
#define CHANNEL_SCAN_INDEX_ILLUM 0


struct als_state {
struct als_state {
@@ -355,9 +351,19 @@ static int hid_als_remove(struct platform_device *pdev)
	return 0;
	return 0;
}
}


static struct platform_device_id hid_als_ids[] = {
	{
		/* Format: HID-SENSOR-usage_id_in_hex_lowercase */
		.name = "HID-SENSOR-200041",
	},
	{ /* sentinel */ }
};
MODULE_DEVICE_TABLE(platform, hid_als_ids);

static struct platform_driver hid_als_platform_driver = {
static struct platform_driver hid_als_platform_driver = {
	.id_table = hid_als_ids,
	.driver = {
	.driver = {
		.name	= DRIVER_NAME,
		.name	= KBUILD_MODNAME,
		.owner	= THIS_MODULE,
		.owner	= THIS_MODULE,
	},
	},
	.probe		= hid_als_probe,
	.probe		= hid_als_probe,