greybus: svc: Pass the correct pointer to input_free_device()

In gb_svc_input_create() fn, on failure, wrong pointer
was being passed to input_free_device(). Correct it.

svc->input gets initialized only on successful return of this fn,
so it is absolutely wrong to pass svc->input to input_free_device().

Testing Done: Tested on EVT2.0 platform.

Signed-off-by: Vaibhav Hiremath <vaibhav.hiremath@linaro.org>
Reviewed-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
This commit is contained in:
Vaibhav Hiremath 2016-06-15 10:23:23 +05:30 коммит произвёл Greg Kroah-Hartman
Родитель 9120b9060b
Коммит 880bc0a4af
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1352,7 +1352,7 @@ static struct input_dev *gb_svc_input_create(struct gb_svc *svc)
return input_dev;
err_free_input:
input_free_device(svc->input);
input_free_device(input_dev);
return ERR_PTR(-ENOMEM);
}