Skip to content

Commit

Permalink
mfd: wm8994-core: Disable regulators before removing them
Browse files Browse the repository at this point in the history
The order in which resources were freed in wm8994_device_exit() isn't
correct. The regulators are removed before they are disabled.

Fix it by reordering code a bit, which makes it exact opposite of
wm8994_device_init() as well.

Signed-off-by: Viresh Kumar <[email protected]>
Acked-by: Charles Keepax <[email protected]>
Signed-off-by: Lee Jones <[email protected]>
  • Loading branch information
vireshk authored and Lee Jones committed Nov 25, 2016
1 parent d29ccdb commit 3cfc43d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/mfd/wm8994-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -604,10 +604,10 @@ static int wm8994_device_init(struct wm8994 *wm8994, int irq)
static void wm8994_device_exit(struct wm8994 *wm8994)
{
pm_runtime_disable(wm8994->dev);
mfd_remove_devices(wm8994->dev);
wm8994_irq_exit(wm8994);
regulator_bulk_disable(wm8994->num_supplies,
wm8994->supplies);
mfd_remove_devices(wm8994->dev);
}

static const struct of_device_id wm8994_of_match[] = {
Expand Down

0 comments on commit 3cfc43d

Please sign in to comment.