Re: [PATCH] hwmon: (aspeed-g6-pwm-tach): fix driver data handling in probe/remove
From: Billy Tsai <hidden>
Date: 2026-03-09 01:40:08
Also in:
linux-arm-kernel, linux-hwmon, lkml
From: Billy Tsai <hidden>
Date: 2026-03-09 01:40:08
Also in:
linux-arm-kernel, linux-hwmon, lkml
Hi Guenter, You’re right—the probe path already registers a devres action (devm_add_action_or_reset()) to call aspeed_pwm_tach_reset_assert(). Therefore, there is no need to perform this again. We can simply remove the remove callback, since all resources are already managed by the devm_* APIs. Thanks