Skip to content

Commit

Permalink
staging:iio:adc:ad7314 allocate chip state with iio_dev and use iio_p…
Browse files Browse the repository at this point in the history
…riv to access.

Signed-off-by: Jonathan Cameron <jic23@cam.ac.uk>
Acked-by: Michael Hennerich <michael.hennerich@analog.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Jonathan Cameron authored and Greg Kroah-Hartman committed Jun 28, 2011
1 parent d439797 commit 744e4a6
Showing 1 changed file with 19 additions and 29 deletions.
48 changes: 19 additions & 29 deletions drivers/staging/iio/adc/ad7314.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@

struct ad7314_chip_info {
struct spi_device *spi_dev;
struct iio_dev *indio_dev;
s64 last_timestamp;
u8 mode;
};
Expand Down Expand Up @@ -87,7 +86,7 @@ static ssize_t ad7314_show_mode(struct device *dev,
char *buf)
{
struct iio_dev *dev_info = dev_get_drvdata(dev);
struct ad7314_chip_info *chip = dev_info->dev_data;
struct ad7314_chip_info *chip = iio_priv(dev_info);

if (chip->mode)
return sprintf(buf, "power-save\n");
Expand All @@ -101,7 +100,7 @@ static ssize_t ad7314_store_mode(struct device *dev,
size_t len)
{
struct iio_dev *dev_info = dev_get_drvdata(dev);
struct ad7314_chip_info *chip = dev_info->dev_data;
struct ad7314_chip_info *chip = iio_priv(dev_info);
u16 mode = 0;
int ret;

Expand Down Expand Up @@ -136,7 +135,7 @@ static ssize_t ad7314_show_temperature(struct device *dev,
char *buf)
{
struct iio_dev *dev_info = dev_get_drvdata(dev);
struct ad7314_chip_info *chip = dev_info->dev_data;
struct ad7314_chip_info *chip = iio_priv(dev_info);
u16 data;
char sign = ' ';
int ret;
Expand Down Expand Up @@ -202,54 +201,45 @@ static const struct iio_info ad7314_info = {
static int __devinit ad7314_probe(struct spi_device *spi_dev)
{
struct ad7314_chip_info *chip;
struct iio_dev *indio_dev;
int ret = 0;

chip = kzalloc(sizeof(struct ad7314_chip_info), GFP_KERNEL);

if (chip == NULL)
return -ENOMEM;

indio_dev = iio_allocate_device(sizeof(*chip));
if (indio_dev == NULL) {
ret = -ENOMEM;
goto error_ret;
}
chip = iio_priv(indio_dev);
/* this is only used for device removal purposes */
dev_set_drvdata(&spi_dev->dev, chip);

chip->spi_dev = spi_dev;

chip->indio_dev = iio_allocate_device(0);
if (chip->indio_dev == NULL) {
ret = -ENOMEM;
goto error_free_chip;
}
indio_dev->name = spi_get_device_id(spi_dev)->name;
indio_dev->dev.parent = &spi_dev->dev;
indio_dev->info = &ad7314_info;

chip->indio_dev->name = spi_get_device_id(spi_dev)->name;
chip->indio_dev->dev.parent = &spi_dev->dev;
chip->indio_dev->info = &ad7314_info;
chip->indio_dev->dev_data = (void *)chip;

ret = iio_device_register(chip->indio_dev);
ret = iio_device_register(indio_dev);
if (ret)
goto error_free_dev;

dev_info(&spi_dev->dev, "%s temperature sensor registered.\n",
chip->indio_dev->name);
indio_dev->name);

return 0;
error_free_dev:
iio_free_device(chip->indio_dev);
error_free_chip:
kfree(chip);

iio_free_device(indio_dev);
error_ret:
return ret;
}

static int __devexit ad7314_remove(struct spi_device *spi_dev)
{
struct ad7314_chip_info *chip = dev_get_drvdata(&spi_dev->dev);
struct iio_dev *indio_dev = chip->indio_dev;
struct iio_dev *indio_dev = dev_get_drvdata(&spi_dev->dev);

dev_set_drvdata(&spi_dev->dev, NULL);
iio_device_unregister(indio_dev);
iio_free_device(chip->indio_dev);
kfree(chip);
iio_free_device(indio_dev);

return 0;
}
Expand Down

0 comments on commit 744e4a6

Please sign in to comment.