]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
arc: Remove duplicate newlines
authorMarek Vasut <marek.vasut+renesas@mailbox.org>
Sat, 13 Jul 2024 13:18:53 +0000 (15:18 +0200)
committerTom Rini <trini@konsulko.com>
Mon, 15 Jul 2024 18:12:16 +0000 (12:12 -0600)
Drop all duplicate newlines. No functional change.

Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
arch/arc/include/asm/io.h

index c818b8bdaec04f8c4f576fb56e52cb5593f22da1..39f361293fda7385d6e1d2e7b8ade0b2bd1adc8e 100644 (file)
@@ -77,7 +77,6 @@ static inline void sync(void)
 #define __arch_putl(v, a)      ({ __comp_b(); *(volatile u32 *)(a) = (v); __comp_b(); })
 #define __arch_putq(v, a)      ({ __comp_b(); *(volatile u64 *)(a) = (v); __comp_b(); })
 
-
 /*
  * We add memory barriers for __raw_readX / __raw_writeX accessors same way as
  * it is done for readX and writeX accessors as lots of U-Boot driver uses
@@ -93,7 +92,6 @@ static inline void sync(void)
 #define __raw_readl(c)         ({ u32 __v = __arch_getl(c); __iormb(); __v; })
 #define __raw_readq(c)         ({ u64 __v = __arch_getq(c); __iormb(); __v; })
 
-
 static inline void __raw_writesb(unsigned long addr, const void *data,
                                 int bytelen)
 {