From f1cd73674ff19e62c69c942f23abb061c0a26072 Mon Sep 17 00:00:00 2001 From: Christophe Leroy Date: Thu, 13 Jul 2017 15:09:52 +0200 Subject: powerpc: move set_msr() and get_msr() into .h set_msr() and get_msr() are defined and used twice. This patch moves them into ppc.h Signed-off-by: Christophe Leroy --- arch/powerpc/lib/interrupts.c | 14 -------------- 1 file changed, 14 deletions(-) (limited to 'arch/powerpc/lib/interrupts.c') diff --git a/arch/powerpc/lib/interrupts.c b/arch/powerpc/lib/interrupts.c index 50313573fb9..ccba8297102 100644 --- a/arch/powerpc/lib/interrupts.c +++ b/arch/powerpc/lib/interrupts.c @@ -33,20 +33,6 @@ extern void timer_interrupt_cpu (struct pt_regs *); static unsigned decrementer_count; /* count value for 1e6/HZ microseconds */ -static __inline__ unsigned long get_msr (void) -{ - unsigned long msr; - - asm volatile ("mfmsr %0":"=r" (msr):); - - return msr; -} - -static __inline__ void set_msr (unsigned long msr) -{ - asm volatile ("mtmsr %0"::"r" (msr)); -} - static __inline__ unsigned long get_dec (void) { unsigned long val; -- cgit v1.2.3