Commit ef256176 authored by Axel Lin's avatar Axel Lin Committed by Samuel Ortiz

mfd: Avoid calling platform_device_put() twice in ucb1400 probe error path

In the case of goto err2, what we want is to call
platform_device_del() instead of platform_device_unregister().
Otherwise, we call platform_device_put() twice.
Signed-off-by: default avatarAxel Lin <axel.lin@gmail.com>
Signed-off-by: default avatarSamuel Ortiz <sameo@linux.intel.com>
parent 288129f3
...@@ -114,7 +114,7 @@ static int ucb1400_core_probe(struct device *dev) ...@@ -114,7 +114,7 @@ static int ucb1400_core_probe(struct device *dev)
err3: err3:
platform_device_put(ucb->ucb1400_ts); platform_device_put(ucb->ucb1400_ts);
err2: err2:
platform_device_unregister(ucb->ucb1400_gpio); platform_device_del(ucb->ucb1400_gpio);
err1: err1:
platform_device_put(ucb->ucb1400_gpio); platform_device_put(ucb->ucb1400_gpio);
err0: err0:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment