nvme-hwmon: Return error code when registration fails
authorDaniel Wagner <dwagner@suse.de>
Fri, 12 Feb 2021 09:30:15 +0000 (10:30 +0100)
committerChristoph Hellwig <hch@lst.de>
Fri, 5 Mar 2021 12:41:03 +0000 (13:41 +0100)
commit78570f8873c8cd44c12714c7fa7db2601ec5617d
tree6949049843f73c1a3096f3ec3f28e0f04bafa4e6
parent6e6a6828c517fb6819479bf5187df5f39084eb9e
nvme-hwmon: Return error code when registration fails

The hwmon pointer wont be NULL if the registration fails. Though the
exit code path will assign it to ctrl->hwmon_device. Later
nvme_hwmon_exit() will try to free the invalid pointer. Avoid this by
returning the error code from hwmon_device_register_with_info().

Fixes: ed7770f66286 ("nvme/hwmon: rework to avoid devm allocation")
Signed-off-by: Daniel Wagner <dwagner@suse.de>
Signed-off-by: Christoph Hellwig <hch@lst.de>
drivers/nvme/host/hwmon.c