lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Sat, 18 Oct 2014 00:17:49 +0200 From: Pali Rohár <pali.rohar@...il.com> To: Guenter Roeck <linux@...ck-us.net>, Arnd Bergmann <arnd@...db.de>, "Greg Kroah-Hartman" <gregkh@...uxfoundation.org> Cc: linux-kernel@...r.kernel.org, Steven Honeyman <stevenhoneyman@...il.com>, Pali Rohár <pali.rohar@...il.com> Subject: [PATCH] i8k: Add MODULE_DEVICE_TABLE macro This patch adds MODULE_DEVICE_TABLE macro so i8k.ko module can be automatically loaded based on dmi system alias. Signed-off-by: Pali Rohár <pali.rohar@...il.com> --- drivers/char/i8k.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/char/i8k.c b/drivers/char/i8k.c index 471f985..7272b08 100644 --- a/drivers/char/i8k.c +++ b/drivers/char/i8k.c @@ -796,6 +796,8 @@ static struct dmi_system_id i8k_dmi_table[] __initdata = { { } }; +MODULE_DEVICE_TABLE(dmi, i8k_dmi_table); + /* * Probe for the presence of a supported laptop. */ -- 1.7.9.5 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists