From mboxrd@z Thu Jan 1 00:00:00 1970 From: Hans de Goede Date: Thu, 10 Dec 2015 12:32:43 +0100 Subject: [U-Boot] [PATCH 2/2] sun4i: clock: cleanup some whitespace errors In-Reply-To: <1449161369-11771-3-git-send-email-oliver@schinagl.nl> References: <1449161369-11771-1-git-send-email-oliver@schinagl.nl> <1449161369-11771-3-git-send-email-oliver@schinagl.nl> Message-ID: <566962DB.9010906@redhat.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi, On 12/03/2015 05:49 PM, Olliver Schinagl wrote: > From: Olliver Schinagl > > Add some spaces around operators. > > Signed-off-by: Olliver Schinagl Thanks, applied. Regards, Hans > --- > arch/arm/cpu/armv7/sunxi/clock_sun4i.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/arch/arm/cpu/armv7/sunxi/clock_sun4i.c b/arch/arm/cpu/armv7/sunxi/clock_sun4i.c > index ed910b1..866b2d6 100644 > --- a/arch/arm/cpu/armv7/sunxi/clock_sun4i.c > +++ b/arch/arm/cpu/armv7/sunxi/clock_sun4i.c > @@ -59,7 +59,7 @@ void clock_init_uart(void) > > /* open the clock for uart */ > setbits_le32(&ccm->apb1_gate, > - CLK_GATE_OPEN << (APB1_GATE_UART_SHIFT+CONFIG_CONS_INDEX-1)); > + CLK_GATE_OPEN << (APB1_GATE_UART_SHIFT+CONFIG_CONS_INDEX - 1)); > } > > int clock_twi_onoff(int port, int state) > @@ -77,10 +77,10 @@ int clock_twi_onoff(int port, int state) > /* set the apb clock gate for twi */ > if (state) > setbits_le32(&ccm->apb1_gate, > - CLK_GATE_OPEN << (APB1_GATE_TWI_SHIFT+port)); > + CLK_GATE_OPEN << (APB1_GATE_TWI_SHIFT + port)); > else > clrbits_le32(&ccm->apb1_gate, > - CLK_GATE_OPEN << (APB1_GATE_TWI_SHIFT+port)); > + CLK_GATE_OPEN << (APB1_GATE_TWI_SHIFT + port)); > > return 0; > } >