You've already forked linux-rockchip
mirror of
https://github.com/armbian/linux-rockchip.git
synced 2026-01-06 11:08:10 -08:00
staging: fieldbus: Fix the error handling path in anybuss_host_common_probe()
[ Upstream commit7079b3483a] If device_register() fails, device_unregister() should not be called because it will free some resources that are not allocated. put_device() should be used instead. Fixes:308ee87a2f("staging: fieldbus: anybus-s: support HMS Anybus-S bus") Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr> Link: https://lore.kernel.org/r/5401a519608d6e1a4e7435c20f4f20b0c5c36c23.1650610082.git.christophe.jaillet@wanadoo.fr Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
b382c0c3b8
commit
f9782b26d6
@@ -1384,7 +1384,7 @@ anybuss_host_common_probe(struct device *dev,
|
||||
goto err_device;
|
||||
return cd;
|
||||
err_device:
|
||||
device_unregister(&cd->client->dev);
|
||||
put_device(&cd->client->dev);
|
||||
err_kthread:
|
||||
kthread_stop(cd->qthread);
|
||||
err_reset:
|
||||
|
||||
Reference in New Issue
Block a user