Commit f3500980 authored by Wei Ni's avatar Wei Ni Committed by Eduardo Valentin

thermal: tegra: fix static checker warning

There has a static checker warning:
warn: variable dereferenced before check 'dev' (see line 222)

Since check 'dev' is unnecessary, so remove this check.

Fixes: ee6d79f202a4 ("thermal: tegra: add thermtrip function")
Signed-off-by: default avatarWei Ni <wni@nvidia.com>
Reported-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarEduardo Valentin <edubezval@gmail.com>
parent a977c41e
...@@ -223,10 +223,7 @@ static int thermtrip_program(struct device *dev, ...@@ -223,10 +223,7 @@ static int thermtrip_program(struct device *dev,
int temp; int temp;
u32 r; u32 r;
if (!dev || !sg) if (!sg || !sg->thermtrip_threshold_mask)
return -EINVAL;
if (!sg->thermtrip_threshold_mask)
return -EINVAL; return -EINVAL;
temp = enforce_temp_range(dev, trip_temp) / ts->soc->thresh_grain; temp = enforce_temp_range(dev, trip_temp) / ts->soc->thresh_grain;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment