linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] hwrng: via-rng: Add MODULE_DEVICE_TABLE
@ 2013-09-01 22:53 Ben Hutchings
  2013-09-02 10:36 ` Herbert Xu
  0 siblings, 1 reply; 2+ messages in thread
From: Ben Hutchings @ 2013-09-01 22:53 UTC (permalink / raw)
  To: Matt Mackall, Herbert Xu; +Cc: LKML

[-- Attachment #1: Type: text/plain, Size: 991 bytes --]

via-rng currently isn't auto-loaded if built as a module.

Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
---
Compile-tested only.

Ben.

 drivers/char/hw_random/via-rng.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/drivers/char/hw_random/via-rng.c b/drivers/char/hw_random/via-rng.c
index d0387a8..e737772 100644
--- a/drivers/char/hw_random/via-rng.c
+++ b/drivers/char/hw_random/via-rng.c
@@ -29,6 +29,7 @@
 #include <linux/kernel.h>
 #include <linux/hw_random.h>
 #include <linux/delay.h>
+#include <asm/cpu_device_id.h>
 #include <asm/io.h>
 #include <asm/msr.h>
 #include <asm/cpufeature.h>
@@ -220,5 +221,11 @@ static void __exit mod_exit(void)
 module_init(mod_init);
 module_exit(mod_exit);
 
+static struct x86_cpu_id via_rng_cpu_id[] = {
+	X86_FEATURE_MATCH(X86_FEATURE_XSTORE),
+	{}
+};
+
 MODULE_DESCRIPTION("H/W RNG driver for VIA CPU with PadLock");
 MODULE_LICENSE("GPL");
+MODULE_DEVICE_TABLE(x86cpu, via_rng_cpu_id);


[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 828 bytes --]

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] hwrng: via-rng: Add MODULE_DEVICE_TABLE
  2013-09-01 22:53 [PATCH] hwrng: via-rng: Add MODULE_DEVICE_TABLE Ben Hutchings
@ 2013-09-02 10:36 ` Herbert Xu
  0 siblings, 0 replies; 2+ messages in thread
From: Herbert Xu @ 2013-09-02 10:36 UTC (permalink / raw)
  To: Ben Hutchings; +Cc: Matt Mackall, LKML

On Sun, Sep 01, 2013 at 11:53:57PM +0100, Ben Hutchings wrote:
> via-rng currently isn't auto-loaded if built as a module.
> 
> Signed-off-by: Ben Hutchings <ben@decadent.org.uk>

Patch applied.  Thanks.
-- 
Email: Herbert Xu <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2013-09-02 10:36 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-09-01 22:53 [PATCH] hwrng: via-rng: Add MODULE_DEVICE_TABLE Ben Hutchings
2013-09-02 10:36 ` Herbert Xu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).