From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: From: "Mutharaju, Prasanna (P.)" To: Krzysztof Kozlowski , =?iso-8859-1?Q?Uwe_Kleine-K=F6nig?= CC: Kukjin Kim , Sylwester Nawrocki , Tomasz Figa , "Michael Turquette" , Stephen Boyd , "linux-clk@vger.kernel.org" , "linux-arm-kernel@lists.infradead.org" , "linux-samsung-soc@vger.kernel.org" Subject: [PATCH v3] clk: s3c2410: removed unneeded variable in s3c24xx_clkout_set_parent Date: Mon, 30 Nov 2015 09:52:35 +0000 Message-ID: <20151130095109.GA28767@jci-VirtualBox> Content-Type: text/plain; charset="iso-8859-1" MIME-Version: 1.0 List-ID: Remove unneeded variable used to store return value. Signed-off-by: Prasanna Karthik --- v3: Modified subject and changelog comments --- --- drivers/clk/samsung/clk-s3c2410-dclk.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/clk/samsung/clk-s3c2410-dclk.c b/drivers/clk/samsung/c= lk-s3c2410-dclk.c index e9eb935..ec6fb14 100644 --- a/drivers/clk/samsung/clk-s3c2410-dclk.c +++ b/drivers/clk/samsung/clk-s3c2410-dclk.c @@ -77,12 +77,11 @@ static u8 s3c24xx_clkout_get_parent(struct clk_hw *hw) static int s3c24xx_clkout_set_parent(struct clk_hw *hw, u8 index) { struct s3c24xx_clkout *clkout =3D to_s3c24xx_clkout(hw); - int ret =3D 0; =20 s3c2410_modify_misccr((clkout->mask << clkout->shift), (index << clkout->shift)); =20 - return ret; + return 0; } =20 static const struct clk_ops s3c24xx_clkout_ops =3D { --=20 1.9.1