Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bbf6adc1 authored by Axel Lin's avatar Axel Lin Committed by Samuel Ortiz
Browse files

mfd: Convert twl6040-core to devm_regmap_init_i2c()

parent 0ef4619c
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -524,7 +524,7 @@ static int __devinit twl6040_probe(struct i2c_client *client,
		goto err;
	}

	twl6040->regmap = regmap_init_i2c(client, &twl6040_regmap_config);
	twl6040->regmap = devm_regmap_init_i2c(client, &twl6040_regmap_config);
	if (IS_ERR(twl6040->regmap)) {
		ret = PTR_ERR(twl6040->regmap);
		goto err;
@@ -623,7 +623,6 @@ static int __devinit twl6040_probe(struct i2c_client *client,
		gpio_free(twl6040->audpwron);
gpio1_err:
	i2c_set_clientdata(client, NULL);
	regmap_exit(twl6040->regmap);
err:
	return ret;
}
@@ -643,7 +642,6 @@ static int __devexit twl6040_remove(struct i2c_client *client)

	mfd_remove_devices(&client->dev);
	i2c_set_clientdata(client, NULL);
	regmap_exit(twl6040->regmap);

	return 0;
}