powerpc: mpc8xx: make get_immr() independent of CONFIG_8xx
authorChristophe Leroy <christophe.leroy@c-s.fr>
Fri, 16 Mar 2018 16:20:37 +0000 (17:20 +0100)
committerTom Rini <trini@konsulko.com>
Fri, 6 Apr 2018 20:30:37 +0000 (16:30 -0400)
SPRN_IMMR is defined regardless of the CPU. Therefore, there
is no point in enclosing get_immr() inside a #ifdef CONFIG_8xx

As it a static inline function, it will in any case only be
compiled in functons using it.

Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr>
arch/powerpc/include/asm/ppc.h

index 5e0aa08be936e1b44b099ae6a9083c31610f6d9f..6ba10974b6d2d86b06f1a2fb697bc1d56bf106c6 100644 (file)
 
 #include <asm/processor.h>
 
-#if defined(CONFIG_8xx)
 static inline uint get_immr(uint mask)
 {
        uint immr = mfspr(SPRN_IMMR);
 
        return mask ? (immr & mask) : immr;
 }
-#endif
+
 static inline uint get_pvr(void)
 {
        return mfspr(PVR);