Commit 2d1dcaf0 authored by Ladislav Michl's avatar Ladislav Michl Committed by Tony Lindgren

[PATCH] ARM: OMAP: various whitespace cleanups

Please use 'let c_space_errors=1' in vim to see what this patch fixes.
While there, remove initilizers from variables which are by default
initialized to zero (to respect linux policy). No code changes.
parent eb805ee8
...@@ -60,7 +60,7 @@ struct omap_irq_bank { ...@@ -60,7 +60,7 @@ struct omap_irq_bank {
unsigned long wake_enable; unsigned long wake_enable;
}; };
static unsigned int irq_bank_count = 0; static unsigned int irq_bank_count;
static struct omap_irq_bank *irq_banks; static struct omap_irq_bank *irq_banks;
static inline unsigned int irq_bank_readl(int bank, int offset) static inline unsigned int irq_bank_readl(int bank, int offset)
......
...@@ -30,9 +30,9 @@ ...@@ -30,9 +30,9 @@
#include <asm/arch/pm.h> #include <asm/arch/pm.h>
#endif #endif
static struct clk * uart1_ck = NULL; static struct clk * uart1_ck;
static struct clk * uart2_ck = NULL; static struct clk * uart2_ck;
static struct clk * uart3_ck = NULL; static struct clk * uart3_ck;
static inline unsigned int omap_serial_in(struct plat_serial8250_port *up, static inline unsigned int omap_serial_in(struct plat_serial8250_port *up,
int offset) int offset)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment