diff options
author | Alexander Graf <agraf@suse.de> | 2013-12-09 07:53:42 -0500 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2014-01-09 04:14:00 -0500 |
commit | 398a76c677a2612c1b03a8d20fbf116e3778ebec (patch) | |
tree | 18770eeb2f411ae76639c87838b299169e0d96f3 /arch/powerpc/kvm/44x.c | |
parent | 27025a602cb9d8b0fa5162b465334ef059a503b6 (diff) |
KVM: PPC: Add devname:kvm aliases for modules
Systems that support automatic loading of kernel modules through
device aliases should try and automatically load kvm when /dev/kvm
gets opened.
Add code to support that magic for all PPC kvm targets, even the
ones that don't support modules yet.
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'arch/powerpc/kvm/44x.c')
-rw-r--r-- | arch/powerpc/kvm/44x.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/powerpc/kvm/44x.c b/arch/powerpc/kvm/44x.c index 93221e87b911..9cb4b0a36031 100644 --- a/arch/powerpc/kvm/44x.c +++ b/arch/powerpc/kvm/44x.c | |||
@@ -21,6 +21,8 @@ | |||
21 | #include <linux/slab.h> | 21 | #include <linux/slab.h> |
22 | #include <linux/err.h> | 22 | #include <linux/err.h> |
23 | #include <linux/export.h> | 23 | #include <linux/export.h> |
24 | #include <linux/module.h> | ||
25 | #include <linux/miscdevice.h> | ||
24 | 26 | ||
25 | #include <asm/reg.h> | 27 | #include <asm/reg.h> |
26 | #include <asm/cputable.h> | 28 | #include <asm/cputable.h> |
@@ -231,3 +233,5 @@ static void __exit kvmppc_44x_exit(void) | |||
231 | 233 | ||
232 | module_init(kvmppc_44x_init); | 234 | module_init(kvmppc_44x_init); |
233 | module_exit(kvmppc_44x_exit); | 235 | module_exit(kvmppc_44x_exit); |
236 | MODULE_ALIAS_MISCDEV(KVM_MINOR); | ||
237 | MODULE_ALIAS("devname:kvm"); | ||