leds: cht-wcove: Use devm_led_classdev_register() to avoid memory leak
authorJoe Hattori <joe@pf.is.s.u-tokyo.ac.jp>
Fri, 20 Dec 2024 08:53:46 +0000 (17:53 +0900)
committerLee Jones <lee@kernel.org>
Thu, 9 Jan 2025 10:57:16 +0000 (10:57 +0000)
commit417cad5dc782096350e6a967ee5dd3417a19a24e
tree770310b262328827f25b7f12fecbb23a68e8d282
parente14d879292b0f7755c0d51b82a19b30859bb080a
leds: cht-wcove: Use devm_led_classdev_register() to avoid memory leak

cht_wc_leds_probe() leaks memory when the second led_classdev_register()
call in the for-loop fails as it does not call the cleanup function
led_classdev_unregister() on the first device. Avoid this leak by
calling devm_led_classdev_register().

Fixes: 047da762b9a9 ("leds: Add Intel Cherry Trail Whiskey Cove PMIC LED driver")
Signed-off-by: Joe Hattori <joe@pf.is.s.u-tokyo.ac.jp>
Link: https://lore.kernel.org/r/20241220085346.533675-1-joe@pf.is.s.u-tokyo.ac.jp
Signed-off-by: Lee Jones <lee@kernel.org>
drivers/leds/leds-cht-wcove.c