MIPS: KVM: Drop pr_info messages on init/exit
authorJames Hogan <james.hogan@imgtec.com>
Thu, 26 Jun 2014 14:21:11 +0000 (15:21 +0100)
committerJames Hogan <james.hogan@imgtec.com>
Fri, 27 Mar 2015 21:25:09 +0000 (21:25 +0000)
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
arch/mips/kvm/mips.c

index b909c0046f084106e91c10f8090e70d2489478c0..0aab83d894ba620f8dba8905265610e64e6c3acb 100644 (file)
@@ -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);