projects
/
platform
/
kernel
/
linux-exynos.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
41cabbc
)
clk: fix codying style of if ... else blocks
author
Masahiro Yamada
<yamada.masahiro@socionext.com>
Thu, 5 Nov 2015 08:59:39 +0000
(17:59 +0900)
committer
Michael Turquette
<mturquette@baylibre.com>
Tue, 22 Dec 2015 18:11:52 +0000
(10:11 -0800)
This code is unreadable due to the blank line between if and else
blocks.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Michael Turquette <mturquette@baylibre.com>
drivers/clk/clk-mux.c
patch
|
blob
|
history
diff --git
a/drivers/clk/clk-mux.c
b/drivers/clk/clk-mux.c
index
7129c86
..
5ed03c8
100644
(file)
--- a/
drivers/clk/clk-mux.c
+++ b/
drivers/clk/clk-mux.c
@@
-71,10
+71,9
@@
static int clk_mux_set_parent(struct clk_hw *hw, u8 index)
u32 val;
unsigned long flags = 0;
- if (mux->table)
+ if (mux->table)
{
index = mux->table[index];
-
- else {
+ } else {
if (mux->flags & CLK_MUX_INDEX_BIT)
index = 1 << index;