]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commit
rpmsg: glink: Fix rpmsg_register_device err handling
authorChris Lew <clew@codeaurora.org>
Fri, 4 Oct 2019 22:27:00 +0000 (15:27 -0700)
committerBjorn Andersson <bjorn.andersson@linaro.org>
Wed, 16 Oct 2019 16:38:22 +0000 (09:38 -0700)
commitf7e714988edaffe6ac578318e99501149b067ba0
treea45a2ef5714166571214322db9681148c443185c
parentb646293e272816dd0719529dcebbd659de0722f7
rpmsg: glink: Fix rpmsg_register_device err handling

The device release function is set before registering with rpmsg. If
rpmsg registration fails, the framework will call device_put(), which
invokes the release function. The channel create logic does not need to
free rpdev if rpmsg_register_device() fails and release is called.

Fixes: b4f8e52b89f6 ("rpmsg: Introduce Qualcomm RPM glink driver")
Cc: stable@vger.kernel.org
Tested-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Signed-off-by: Chris Lew <clew@codeaurora.org>
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
drivers/rpmsg/qcom_glink_native.c