Browse Source

clk: fix codying style of if ... else blocks

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>
Masahiro Yamada 9 năm trước cách đây
mục cha
commit
3837bd277a
1 tập tin đã thay đổi với 2 bổ sung3 xóa
  1. 2 3
      drivers/clk/clk-mux.c

+ 2 - 3
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;