hwmon: (lm90) Always use the dev variable in the probe function

Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Jean Delvare <jdelvare@suse.de>
This commit is contained in:
Guenter Roeck 2014-04-04 18:01:35 +02:00 коммит произвёл Jean Delvare
Родитель 742192f546
Коммит d89fa6867d
1 изменённых файлов: 2 добавлений и 3 удалений

Просмотреть файл

@ -1536,12 +1536,11 @@ static int lm90_probe(struct i2c_client *client,
err = regulator_enable(regulator);
if (err < 0) {
dev_err(&client->dev,
"Failed to enable regulator: %d\n", err);
dev_err(dev, "Failed to enable regulator: %d\n", err);
return err;
}
data = devm_kzalloc(&client->dev, sizeof(struct lm90_data), GFP_KERNEL);
data = devm_kzalloc(dev, sizeof(struct lm90_data), GFP_KERNEL);
if (!data)
return -ENOMEM;