Re: [PATCH] hwmon: (aspeed-g6-pwm-tach): fix driver data handling in probe/remove
From: Billy Tsai
Date: Sun Mar 08 2026 - 21:40:22 EST
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