From: Rafael J. Wysocki Date: Mon, 26 Aug 2024 16:30:42 +0000 (+0200) Subject: thermal: core: Drop redundant lockdep_assert_held() X-Git-Tag: v6.12-rc1~216^2~1^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=49029b507e3ad9de35faca497c7bde0e83fcc036;p=thirdparty%2Fkernel%2Flinux.git thermal: core: Drop redundant lockdep_assert_held() Along the lines of commit 24aad192c671 ("thermal: core: Drop redundant checks from thermal_bind_cdev_to_trip()") notice that thermal_unbind_cdev_from_trip() is only called by thermal_zone_cdev_unbind() under the thermal zone lock, so it need not use lockdep_assert_held() for that lock. No functional impact. Signed-off-by: Rafael J. Wysocki Link: https://patch.msgid.link/3341369.44csPzL39Z@rjwysocki.net --- diff --git a/drivers/thermal/thermal_core.c b/drivers/thermal/thermal_core.c index 4187f207bce91..9215a7bc92c79 100644 --- a/drivers/thermal/thermal_core.c +++ b/drivers/thermal/thermal_core.c @@ -891,8 +891,6 @@ static void thermal_unbind_cdev_from_trip(struct thermal_zone_device *tz, { struct thermal_instance *pos, *next; - lockdep_assert_held(&tz->lock); - mutex_lock(&cdev->lock); list_for_each_entry_safe(pos, next, &tz->thermal_instances, tz_node) { if (pos->trip == trip && pos->cdev == cdev) {