From: James Hogan Date: Thu, 26 Jun 2014 14:21:11 +0000 (+0100) Subject: MIPS: KVM: Drop pr_info messages on init/exit X-Git-Tag: MMI-PSA29.97-13-9~10342^2~30^2~14 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=58a115bcec06f2de26923bc13e88cb73b780ae41;p=GitHub%2FMotorolaMobilityLLC%2Fkernel-slsi.git 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 Cc: Paolo Bonzini Cc: Ralf Baechle Cc: Gleb Natapov Cc: linux-mips@linux-mips.org Cc: kvm@vger.kernel.org --- diff --git a/arch/mips/kvm/mips.c b/arch/mips/kvm/mips.c index b909c0046f08..0aab83d894ba 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);