spi: pxa2xx: Remove the unneeded result variable
authorye xingchen <ye.xingchen@zte.com.cn>
Thu, 25 Aug 2022 07:28:28 +0000 (07:28 +0000)
committerMark Brown <broonie@kernel.org>
Thu, 25 Aug 2022 11:29:36 +0000 (12:29 +0100)
Return the value clk_prepare_enable() directly instead of storing it in
another redundant variable.

Reported-by: Zeal Robot <zealci@zte.com.cn>
Signed-off-by: ye xingchen <ye.xingchen@zte.com.cn>
Link: https://lore.kernel.org/r/20220825072828.229294-1-ye.xingchen@zte.com.cn
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/spi/spi-pxa2xx.c

index 838d12e..986ffc4 100644 (file)
@@ -1873,10 +1873,8 @@ static int pxa2xx_spi_runtime_suspend(struct device *dev)
 static int pxa2xx_spi_runtime_resume(struct device *dev)
 {
        struct driver_data *drv_data = dev_get_drvdata(dev);
-       int status;
 
-       status = clk_prepare_enable(drv_data->ssp->clk);
-       return status;
+       return clk_prepare_enable(drv_data->ssp->clk);
 }
 #endif