Commit d372e5a1 authored by Alexandru Ardelean's avatar Alexandru Ardelean Committed by Jonathan Cameron

iio: accel: adxl345: convert probe to device-managed functions

This driver has two parts, one for i2c and one for spi, since the chip can
operate with both wire protocols.

The core file has a common adxl345_core_remove() function which puts the
chip into a powerdown state. This can be implemented with a
devm_add_action_or_reset() hook.

Doing that means we can register the IIO device with
devm_iio_device_register() and get rid of the adxl345_core_remove()
function.

The dev_set_drvdata() call can be removed as there is no other user of this
private data anymore.
Signed-off-by: default avatarAlexandru Ardelean <aardelean@deviqon.com>
Link: https://lore.kernel.org/r/20210624080441.8710-1-aardelean@deviqon.comSigned-off-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
parent 9ae8da91
...@@ -15,6 +15,5 @@ enum adxl345_device_type { ...@@ -15,6 +15,5 @@ enum adxl345_device_type {
int adxl345_core_probe(struct device *dev, struct regmap *regmap, int adxl345_core_probe(struct device *dev, struct regmap *regmap,
enum adxl345_device_type type, const char *name); enum adxl345_device_type type, const char *name);
int adxl345_core_remove(struct device *dev);
#endif /* _ADXL345_H_ */ #endif /* _ADXL345_H_ */
...@@ -208,6 +208,11 @@ static const struct iio_info adxl345_info = { ...@@ -208,6 +208,11 @@ static const struct iio_info adxl345_info = {
.write_raw_get_fmt = adxl345_write_raw_get_fmt, .write_raw_get_fmt = adxl345_write_raw_get_fmt,
}; };
static void adxl345_powerdown(void *regmap)
{
regmap_write(regmap, ADXL345_REG_POWER_CTL, ADXL345_POWER_CTL_STANDBY);
}
int adxl345_core_probe(struct device *dev, struct regmap *regmap, int adxl345_core_probe(struct device *dev, struct regmap *regmap,
enum adxl345_device_type type, const char *name) enum adxl345_device_type type, const char *name)
{ {
...@@ -233,7 +238,6 @@ int adxl345_core_probe(struct device *dev, struct regmap *regmap, ...@@ -233,7 +238,6 @@ int adxl345_core_probe(struct device *dev, struct regmap *regmap,
return -ENOMEM; return -ENOMEM;
data = iio_priv(indio_dev); data = iio_priv(indio_dev);
dev_set_drvdata(dev, indio_dev);
data->regmap = regmap; data->regmap = regmap;
data->type = type; data->type = type;
/* Enable full-resolution mode */ /* Enable full-resolution mode */
...@@ -260,29 +264,14 @@ int adxl345_core_probe(struct device *dev, struct regmap *regmap, ...@@ -260,29 +264,14 @@ int adxl345_core_probe(struct device *dev, struct regmap *regmap,
return ret; return ret;
} }
ret = iio_device_register(indio_dev); ret = devm_add_action_or_reset(dev, adxl345_powerdown, data->regmap);
if (ret < 0) { if (ret < 0)
dev_err(dev, "iio_device_register failed: %d\n", ret); return ret;
regmap_write(data->regmap, ADXL345_REG_POWER_CTL,
ADXL345_POWER_CTL_STANDBY);
}
return ret; return devm_iio_device_register(dev, indio_dev);
} }
EXPORT_SYMBOL_GPL(adxl345_core_probe); EXPORT_SYMBOL_GPL(adxl345_core_probe);
int adxl345_core_remove(struct device *dev)
{
struct iio_dev *indio_dev = dev_get_drvdata(dev);
struct adxl345_data *data = iio_priv(indio_dev);
iio_device_unregister(indio_dev);
return regmap_write(data->regmap, ADXL345_REG_POWER_CTL,
ADXL345_POWER_CTL_STANDBY);
}
EXPORT_SYMBOL_GPL(adxl345_core_remove);
MODULE_AUTHOR("Eva Rachel Retuya <eraretuya@gmail.com>"); MODULE_AUTHOR("Eva Rachel Retuya <eraretuya@gmail.com>");
MODULE_DESCRIPTION("ADXL345 3-Axis Digital Accelerometer core driver"); MODULE_DESCRIPTION("ADXL345 3-Axis Digital Accelerometer core driver");
MODULE_LICENSE("GPL v2"); MODULE_LICENSE("GPL v2");
...@@ -38,11 +38,6 @@ static int adxl345_i2c_probe(struct i2c_client *client, ...@@ -38,11 +38,6 @@ static int adxl345_i2c_probe(struct i2c_client *client,
id->name); id->name);
} }
static int adxl345_i2c_remove(struct i2c_client *client)
{
return adxl345_core_remove(&client->dev);
}
static const struct i2c_device_id adxl345_i2c_id[] = { static const struct i2c_device_id adxl345_i2c_id[] = {
{ "adxl345", ADXL345 }, { "adxl345", ADXL345 },
{ "adxl375", ADXL375 }, { "adxl375", ADXL375 },
...@@ -65,7 +60,6 @@ static struct i2c_driver adxl345_i2c_driver = { ...@@ -65,7 +60,6 @@ static struct i2c_driver adxl345_i2c_driver = {
.of_match_table = adxl345_of_match, .of_match_table = adxl345_of_match,
}, },
.probe = adxl345_i2c_probe, .probe = adxl345_i2c_probe,
.remove = adxl345_i2c_remove,
.id_table = adxl345_i2c_id, .id_table = adxl345_i2c_id,
}; };
......
...@@ -42,11 +42,6 @@ static int adxl345_spi_probe(struct spi_device *spi) ...@@ -42,11 +42,6 @@ static int adxl345_spi_probe(struct spi_device *spi)
return adxl345_core_probe(&spi->dev, regmap, id->driver_data, id->name); return adxl345_core_probe(&spi->dev, regmap, id->driver_data, id->name);
} }
static int adxl345_spi_remove(struct spi_device *spi)
{
return adxl345_core_remove(&spi->dev);
}
static const struct spi_device_id adxl345_spi_id[] = { static const struct spi_device_id adxl345_spi_id[] = {
{ "adxl345", ADXL345 }, { "adxl345", ADXL345 },
{ "adxl375", ADXL375 }, { "adxl375", ADXL375 },
...@@ -69,7 +64,6 @@ static struct spi_driver adxl345_spi_driver = { ...@@ -69,7 +64,6 @@ static struct spi_driver adxl345_spi_driver = {
.of_match_table = adxl345_of_match, .of_match_table = adxl345_of_match,
}, },
.probe = adxl345_spi_probe, .probe = adxl345_spi_probe,
.remove = adxl345_spi_remove,
.id_table = adxl345_spi_id, .id_table = adxl345_spi_id,
}; };
......
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