From: Ley Foon Tan Date: Thu, 20 Nov 2014 10:44:56 +0000 (+0800) Subject: nios2: remove unnecessary space before define X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=568f6ba03c5ecba5c6dd13e51554c205172ebdaf;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git nios2: remove unnecessary space before define Remove extra space between # and define. Signed-off-by: Ley Foon Tan --- diff --git a/arch/nios2/include/asm/io.h b/arch/nios2/include/asm/io.h index 13dc22b50800..65583ee4561a 100644 --- a/arch/nios2/include/asm/io.h +++ b/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 */