Explorar o código

nios2: remove unnecessary space before define

Remove extra space between # and define.

Signed-off-by: Ley Foon Tan <lftan@altera.com>
Ley Foon Tan %!s(int64=11) %!d(string=hai) anos
pai
achega
568f6ba03c
Modificáronse 1 ficheiros con 4 adicións e 4 borrados
  1. 4 4
      arch/nios2/include/asm/io.h

+ 4 - 4
arch/nios2/include/asm/io.h

@@ -48,14 +48,14 @@ static inline void iounmap(void __iomem *addr)
 }
 
 /* Pages to physical address... */
-# define page_to_phys(page)	virt_to_phys(page_to_virt(page))
-# define page_to_bus(page)	page_to_virt(page)
+#define page_to_phys(page)	virt_to_phys(page_to_virt(page))
+#define page_to_bus(page)	page_to_virt(page)
 
 /* Macros used for converting between virtual and physical mappings. */
-# define phys_to_virt(vaddr)	\
+#define phys_to_virt(vaddr)	\
 	((void *)((unsigned long)(vaddr) | CONFIG_NIOS2_KERNEL_REGION_BASE))
 /* Clear top 3 bits */
-# define virt_to_phys(vaddr)	\
+#define virt_to_phys(vaddr)	\
 	((unsigned long)((unsigned long)(vaddr) & ~0xE0000000))
 
 #endif /* _ASM_NIOS2_IO_H */