Commit 15447a46 authored by Leon Romanovsky's avatar Leon Romanovsky Committed by Samuel Ortiz
Browse files

mfd: sec-core: Remove explicit call to mfd_remove_devices



In case mfd_add_devices will fail, it will call to mfd_remove_devices
by itself and return non-zero value.

Signed-off-by: default avatarLeon Romanovsky <leon@leon.nu>
Signed-off-by: default avatarSamuel Ortiz <sameo@linux.intel.com>
parent 45fcac1a
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -230,13 +230,12 @@ static int sec_pmic_probe(struct i2c_client *i2c,
		BUG();
	}

	if (ret < 0)
	if (ret)
		goto err;

	return ret;

err:
	mfd_remove_devices(sec_pmic->dev);
	sec_irq_exit(sec_pmic);
	i2c_unregister_device(sec_pmic->rtc);
	return ret;