aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-orion5x/ts78xx-setup.c
diff options
context:
space:
mode:
authorXu Wang <vulab@iscas.ac.cn>2020-02-24 15:24:47 +0100
committerGregory CLEMENT <gregory.clement@bootlin.com>2020-03-08 12:42:07 +0100
commitcf8dcf2725a903d4a2f4655f37972cb8f4cdc516 (patch)
tree0634a26e2bd024ade078081757701338fa1052d9 /arch/arm/mach-orion5x/ts78xx-setup.c
parentARM: orion5x: Drop unneeded select of PCI_DOMAINS_GENERIC (diff)
downloadlinux-dev-cf8dcf2725a903d4a2f4655f37972cb8f4cdc516.tar.xz
linux-dev-cf8dcf2725a903d4a2f4655f37972cb8f4cdc516.zip
ARM: orion5x: ts78xx: Remove unneeded variable ret
Remove unneeded variable ret used to store return value,just return 0. Signed-off-by: Xu Wang <vulab@iscas.ac.cn> Signed-off-by: Gregory CLEMENT <gregory.clement@bootlin.com>
Diffstat (limited to 'arch/arm/mach-orion5x/ts78xx-setup.c')
-rw-r--r--arch/arm/mach-orion5x/ts78xx-setup.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/arm/mach-orion5x/ts78xx-setup.c b/arch/arm/mach-orion5x/ts78xx-setup.c
index fda9b75c3a33..a39764faf2a0 100644
--- a/arch/arm/mach-orion5x/ts78xx-setup.c
+++ b/arch/arm/mach-orion5x/ts78xx-setup.c
@@ -398,7 +398,6 @@ static int ts78xx_fpga_load_devices(void)
static int ts78xx_fpga_unload_devices(void)
{
- int ret = 0;
if (ts78xx_fpga.supports.ts_rtc.present == 1)
ts78xx_ts_rtc_unload();
@@ -407,7 +406,7 @@ static int ts78xx_fpga_unload_devices(void)
if (ts78xx_fpga.supports.ts_rng.present == 1)
ts78xx_ts_rng_unload();
- return ret;
+ return 0;
}
static int ts78xx_fpga_load(void)