diff options
author | Chris Packham | 2018-06-04 21:45:22 +1200 |
---|---|---|
committer | Tom Rini | 2018-06-18 14:02:03 -0400 |
commit | 1b65c86e8743a2a3f0147a599ea37e46f917a5b1 (patch) | |
tree | 428873854054715e3391a4d207ec0bc118308104 | |
parent | af14d0dd246d11b2731848b74ca05d05dd6be20c (diff) |
m68k: Remove empty #ifdef/#ifndef block
Whatever code this was guarding has been removed so remove the guards
too.
Signed-off-by: Chris Packham <judge.packham@gmail.com>
-rw-r--r-- | arch/m68k/include/asm/processor.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/arch/m68k/include/asm/processor.h b/arch/m68k/include/asm/processor.h index 3fafa6ff1a8..4af69190b73 100644 --- a/arch/m68k/include/asm/processor.h +++ b/arch/m68k/include/asm/processor.h @@ -11,8 +11,4 @@ n: /* Macros for setting and retrieving special purpose registers */ #define setvbr(v) asm volatile("movec %0,%%VBR" : : "r" (v)) -#ifndef __ASSEMBLY__ - -#endif /* ifndef ASSEMBLY*/ - #endif /* __ASM_M68K_PROCESSOR_H */ |