summaryrefslogtreecommitdiff
path: root/drivers/thermal
diff options
context:
space:
mode:
authorHaowen Bai <baihaowen@meizu.com>2022-05-17 09:31:01 +0800
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2022-05-18 20:53:05 +0200
commit5a66bfb27748d4fd284997dea060c76cdc245375 (patch)
tree3dcbc527062da280c81fe7f47475fb5f3c6f9991 /drivers/thermal
parent42226c989789d8da4af1de0c31070c96726d990c (diff)
thermal: intel: hfi: remove NULL check after container_of() call
container_of() will never return NULL, so remove useless code. Signed-off-by: Haowen Bai <baihaowen@meizu.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/thermal')
-rw-r--r--drivers/thermal/intel/intel_hfi.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/thermal/intel/intel_hfi.c b/drivers/thermal/intel/intel_hfi.c
index 730fd121df6e..a0640f762dc5 100644
--- a/drivers/thermal/intel/intel_hfi.c
+++ b/drivers/thermal/intel/intel_hfi.c
@@ -243,8 +243,6 @@ static void hfi_update_work_fn(struct work_struct *work)
hfi_instance = container_of(to_delayed_work(work), struct hfi_instance,
update_work);
- if (!hfi_instance)
- return;
update_capabilities(hfi_instance);
}