[PATCH 7/7] clk: gate: remove superfluous code
Lucas Stach
dev at lynxeye.de
Mon Oct 20 11:16:01 PDT 2014
This code didn't have any effect.
Signed-off-by: Lucas Stach <dev at lynxeye.de>
---
drivers/clk/clk-gate.c | 11 +----------
1 file changed, 1 insertion(+), 10 deletions(-)
diff --git a/drivers/clk/clk-gate.c b/drivers/clk/clk-gate.c
index 85eba3d..695e19a 100644
--- a/drivers/clk/clk-gate.c
+++ b/drivers/clk/clk-gate.c
@@ -132,14 +132,5 @@ struct clk *clk_gate(const char *name, const char *parent, void __iomem *reg,
struct clk *clk_gate_inverted(const char *name, const char *parent,
void __iomem *reg, u8 shift, unsigned flags)
{
- struct clk *clk;
- struct clk_gate *g;
-
- clk = clk_gate(name, parent, reg, shift, flags, CLK_GATE_INVERTED);
- if (IS_ERR(clk))
- return clk;
-
- g = container_of(clk, struct clk_gate, clk);
-
- return clk;
+ return clk_gate(name, parent, reg, shift, flags, CLK_GATE_INVERTED);
}
--
1.9.3
More information about the barebox
mailing list