staging: olpc_dcon: Do not call platform_device_unregister() in dcon_probe()
authorJing Xiangfeng <jingxiangfeng@huawei.com>
Fri, 20 Nov 2020 07:49:32 +0000 (15:49 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 9 Dec 2020 18:45:13 +0000 (19:45 +0100)
commit4996b4610767064807d022dd731584f7ff78c309
tree6d0ecf64d7e6d0c4b8502ba37931f024bae91f6c
parent7fe5bbdd1f43806c1e38e69585d98d956fca43e8
staging: olpc_dcon: Do not call platform_device_unregister() in dcon_probe()

In dcon_probe(), when platform_device_add() failes to add the device,
it jumps to call platform_device_unregister() to remove the device,
which is unnecessary. So use platform_device_put() instead.

Fixes: 53c43c5ca133 ("Revert "Staging: olpc_dcon: Remove obsolete driver"")
Signed-off-by: Jing Xiangfeng <jingxiangfeng@huawei.com>
Link: https://lore.kernel.org/r/20201120074932.31871-1-jingxiangfeng@huawei.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/olpc_dcon/olpc_dcon.c