mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
hwmon: (scpi-hwmon) remove redundant continue
The continue will not truely skip any code. hence it is safe to remove it. Signed-off-by: zhong jiang <zhongjiang@huawei.com> Signed-off-by: Guenter Roeck <linux@roeck-us.net>
This commit is contained in:
parent
0599682b82
commit
3045b5d61a
1 changed files with 1 additions and 3 deletions
|
@ -286,10 +286,8 @@ static int scpi_hwmon_probe(struct platform_device *pdev)
|
|||
* any thermal zones or if the thermal subsystem is
|
||||
* not configured.
|
||||
*/
|
||||
if (IS_ERR(z)) {
|
||||
if (IS_ERR(z))
|
||||
devm_kfree(dev, zone);
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue