Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 18e294dd authored by Enric Balletbo i Serra's avatar Enric Balletbo i Serra Committed by Lee Jones
Browse files

mfd: cros_ec_dev: Add missing mfd_remove_devices() call in remove



The driver adds different MFD child devices via mfd_add_devices() and
hence it is required to call mfd_remove_devices() to remove MFD child
devices.

Fixes: 5e011558 ("cros_ec: Move cros_ec_dev module to drivers/mfd")
Signed-off-by: default avatarEnric Balletbo i Serra <enric.balletbo@collabora.com>
Signed-off-by: default avatarLee Jones <lee.jones@linaro.org>
parent ea90e7b4
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -493,6 +493,7 @@ static int ec_device_remove(struct platform_device *pdev)

	cros_ec_debugfs_remove(ec);

	mfd_remove_devices(ec->dev);
	cdev_del(&ec->cdev);
	device_unregister(&ec->class_dev);
	return 0;