diff options
author | James Hogan <james.hogan@imgtec.com> | 2014-06-26 14:21:11 (GMT) |
---|---|---|
committer | James Hogan <james.hogan@imgtec.com> | 2015-03-27 21:25:09 (GMT) |
commit | 58a115bcec06f2de26923bc13e88cb73b780ae41 (patch) | |
tree | 8f07d0995abb8294136e14018f2206467951514b | |
parent | e93d4c159caaf746422c1af4c4f09fce9b456f8c (diff) | |
download | linux-58a115bcec06f2de26923bc13e88cb73b780ae41.tar.xz |
MIPS: KVM: Drop pr_info messages on init/exit
The information messages when the KVM module is loaded and unloaded are
a bit pointless and out of line with other architectures, so lets drop
them.
Signed-off-by: James Hogan <james.hogan@imgtec.com>
Cc: Paolo Bonzini <pbonzini@redhat.com>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: Gleb Natapov <gleb@kernel.org>
Cc: linux-mips@linux-mips.org
Cc: kvm@vger.kernel.org
-rw-r--r-- | arch/mips/kvm/mips.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/mips/kvm/mips.c b/arch/mips/kvm/mips.c index b909c00..0aab83d 100644 --- a/arch/mips/kvm/mips.c +++ b/arch/mips/kvm/mips.c @@ -1191,7 +1191,6 @@ int __init kvm_mips_init(void) kvm_mips_release_pfn_clean = kvm_release_pfn_clean; kvm_mips_is_error_pfn = is_error_pfn; - pr_info("KVM/MIPS Initialized\n"); return 0; } @@ -1202,8 +1201,6 @@ void __exit kvm_mips_exit(void) kvm_mips_gfn_to_pfn = NULL; kvm_mips_release_pfn_clean = NULL; kvm_mips_is_error_pfn = NULL; - - pr_info("KVM/MIPS unloaded\n"); } module_init(kvm_mips_init); |