greybus: arche-platform: Cancel delayed_work in driver remove fn

This is a bug fix, where as part of cleanup, delayed work was not
canceled in driver remove function. So fix it.

Testing Done: Tested on EVT1.2 and DB3.5 platform.

Signed-off-by: Vaibhav Hiremath <vaibhav.hiremath@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
This commit is contained in:
Vaibhav Hiremath 2016-02-13 01:15:11 +05:30 коммит произвёл Greg Kroah-Hartman
Родитель 758ca99de9
Коммит 49e6e04bb4
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -262,6 +262,7 @@ static int arche_platform_remove(struct platform_device *pdev)
{
struct arche_platform_drvdata *arche_pdata = platform_get_drvdata(pdev);
cancel_delayed_work_sync(&arche_pdata->delayed_work);
device_for_each_child(&pdev->dev, NULL, arche_remove_child);
arche_platform_cleanup(arche_pdata);
platform_set_drvdata(pdev, NULL);