HID: wacom: Release device resource data obtained by devres_alloc()

Free device resource data, if __wacom_devm_sysfs_create_group
is not successful.

Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
Reviewed-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
This commit is contained in:
Arvind Yadav 2018-04-24 13:33:03 +05:30 коммит произвёл Jiri Kosina
Родитель a230cd52b8
Коммит 097b8f62dd
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -1213,8 +1213,10 @@ static int __wacom_devm_sysfs_create_group(struct wacom *wacom,
devres->root = root;
error = sysfs_create_group(devres->root, group);
if (error)
if (error) {
devres_free(devres);
return error;
}
devres_add(&wacom->hdev->dev, devres);