powerpc: Remove pr_<level> uses of KERN_<level>

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>

authored by Joe Perches and committed by Benjamin Herrenschmidt 689fd14a 4e74fd7d

+3 -3
+2 -2
arch/powerpc/kvm/emulate.c
··· 145 145 /* this default type might be overwritten by subcategories */ 146 146 kvmppc_set_exit_type(vcpu, EMULATED_INST_EXITS); 147 147 148 - pr_debug(KERN_INFO "Emulating opcode %d / %d\n", get_op(inst), get_xop(inst)); 148 + pr_debug("Emulating opcode %d / %d\n", get_op(inst), get_xop(inst)); 149 149 150 150 switch (get_op(inst)) { 151 151 case OP_TRAP: ··· 275 275 { 276 276 u64 jd = get_tb() - vcpu->arch.dec_jiffies; 277 277 kvmppc_set_gpr(vcpu, rt, vcpu->arch.dec - jd); 278 - pr_debug(KERN_INFO "mfDEC: %x - %llx = %lx\n", 278 + pr_debug("mfDEC: %x - %llx = %lx\n", 279 279 vcpu->arch.dec, jd, 280 280 kvmppc_get_gpr(vcpu, rt)); 281 281 break;
+1 -1
arch/powerpc/sysdev/pmi.c
··· 114 114 115 115 spin_lock(&data->handler_spinlock); 116 116 list_for_each_entry(handler, &data->handler, node) { 117 - pr_debug(KERN_INFO "pmi: notifying handler %p\n", handler); 117 + pr_debug("pmi: notifying handler %p\n", handler); 118 118 if (handler->type == data->msg.type) 119 119 handler->handle_pmi_message(data->msg); 120 120 }