Skip to content

Commit

Permalink
hwmon: (lm70) Fix: do not use assignment in if condition
Browse files Browse the repository at this point in the history
Fix checkpatch issue:
ERROR: do not use assignment in if condition

Signed-off-by: Guenter Roeck <[email protected]>
  • Loading branch information
groeck authored and Guenter Roeck committed Mar 19, 2012
1 parent e200c14 commit 7599d32
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions drivers/hwmon/lm70.c
Original file line number Diff line number Diff line change
Expand Up @@ -158,11 +158,12 @@ static int __devinit lm70_probe(struct spi_device *spi)

spi_set_drvdata(spi, p_lm70);

if ((status = device_create_file(&spi->dev, &dev_attr_temp1_input))
|| (status = device_create_file(&spi->dev, &dev_attr_name))) {
dev_dbg(&spi->dev, "device_create_file failure.\n");
status = device_create_file(&spi->dev, &dev_attr_temp1_input);
if (status)
goto out_dev_create_temp_file_failed;
status = device_create_file(&spi->dev, &dev_attr_name);
if (status)
goto out_dev_create_file_failed;
}

/* sysfs hook */
p_lm70->hwmon_dev = hwmon_device_register(&spi->dev);
Expand All @@ -178,6 +179,7 @@ static int __devinit lm70_probe(struct spi_device *spi)
device_remove_file(&spi->dev, &dev_attr_name);
out_dev_create_file_failed:
device_remove_file(&spi->dev, &dev_attr_temp1_input);
out_dev_create_temp_file_failed:
spi_set_drvdata(spi, NULL);
kfree(p_lm70);
return status;
Expand Down

0 comments on commit 7599d32

Please sign in to comment.