Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 259605
b: refs/heads/master
c: f4c794a
h: refs/heads/master
i:
  259603: 9b4d4ad
v: v3
  • Loading branch information
Jonathan Cameron authored and Greg Kroah-Hartman committed Jun 28, 2011
1 parent e382dd6 commit 703c895
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 42 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 46a6af38201693d47c1192c1fe7138e6e268e74e
refs/heads/master: f4c794a2c16b1681759c39de7357de07296fd3fe
73 changes: 32 additions & 41 deletions trunk/drivers/staging/iio/adc/ad7152.c
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@

struct ad7152_chip_info {
struct i2c_client *client;
struct iio_dev *indio_dev;
u16 ch1_offset; /* Channel 1 offset calibration coefficient */
u16 ch1_gain; /* Channel 1 gain coefficient */
u8 ch1_setup;
Expand Down Expand Up @@ -166,7 +165,7 @@ static ssize_t ad7152_show_ch1_value(struct device *dev,
char *buf)
{
struct iio_dev *dev_info = dev_get_drvdata(dev);
struct ad7152_chip_info *chip = dev_info->dev_data;
struct ad7152_chip_info *chip = iio_priv(dev_info);
u8 data[2];

ad7152_i2c_read(chip, AD7152_CH1_DATA_HIGH, data, 2);
Expand All @@ -180,7 +179,7 @@ static ssize_t ad7152_show_ch2_value(struct device *dev,
char *buf)
{
struct iio_dev *dev_info = dev_get_drvdata(dev);
struct ad7152_chip_info *chip = dev_info->dev_data;
struct ad7152_chip_info *chip = iio_priv(dev_info);
u8 data[2];

ad7152_i2c_read(chip, AD7152_CH2_DATA_HIGH, data, 2);
Expand All @@ -194,7 +193,7 @@ static ssize_t ad7152_show_conversion_mode(struct device *dev,
char *buf)
{
struct iio_dev *dev_info = dev_get_drvdata(dev);
struct ad7152_chip_info *chip = dev_info->dev_data;
struct ad7152_chip_info *chip = iio_priv(dev_info);

return sprintf(buf, "%s\n", chip->conversion_mode);
}
Expand All @@ -205,7 +204,7 @@ static ssize_t ad7152_store_conversion_mode(struct device *dev,
size_t len)
{
struct iio_dev *dev_info = dev_get_drvdata(dev);
struct ad7152_chip_info *chip = dev_info->dev_data;
struct ad7152_chip_info *chip = iio_priv(dev_info);
u8 cfg;
int i;

Expand Down Expand Up @@ -234,7 +233,7 @@ static ssize_t ad7152_show_ch1_offset(struct device *dev,
char *buf)
{
struct iio_dev *dev_info = dev_get_drvdata(dev);
struct ad7152_chip_info *chip = dev_info->dev_data;
struct ad7152_chip_info *chip = iio_priv(dev_info);

return sprintf(buf, "%d\n", chip->ch1_offset);
}
Expand All @@ -245,7 +244,7 @@ static ssize_t ad7152_store_ch1_offset(struct device *dev,
size_t len)
{
struct iio_dev *dev_info = dev_get_drvdata(dev);
struct ad7152_chip_info *chip = dev_info->dev_data;
struct ad7152_chip_info *chip = iio_priv(dev_info);
unsigned long data;
int ret;

Expand All @@ -270,7 +269,7 @@ static ssize_t ad7152_show_ch2_offset(struct device *dev,
char *buf)
{
struct iio_dev *dev_info = dev_get_drvdata(dev);
struct ad7152_chip_info *chip = dev_info->dev_data;
struct ad7152_chip_info *chip = iio_priv(dev_info);

return sprintf(buf, "%d\n", chip->ch2_offset);
}
Expand All @@ -281,7 +280,7 @@ static ssize_t ad7152_store_ch2_offset(struct device *dev,
size_t len)
{
struct iio_dev *dev_info = dev_get_drvdata(dev);
struct ad7152_chip_info *chip = dev_info->dev_data;
struct ad7152_chip_info *chip = iio_priv(dev_info);
unsigned long data;
int ret;

Expand All @@ -306,7 +305,7 @@ static ssize_t ad7152_show_ch1_gain(struct device *dev,
char *buf)
{
struct iio_dev *dev_info = dev_get_drvdata(dev);
struct ad7152_chip_info *chip = dev_info->dev_data;
struct ad7152_chip_info *chip = iio_priv(dev_info);

return sprintf(buf, "%d\n", chip->ch1_gain);
}
Expand All @@ -317,7 +316,7 @@ static ssize_t ad7152_store_ch1_gain(struct device *dev,
size_t len)
{
struct iio_dev *dev_info = dev_get_drvdata(dev);
struct ad7152_chip_info *chip = dev_info->dev_data;
struct ad7152_chip_info *chip = iio_priv(dev_info);
unsigned long data;
int ret;

Expand All @@ -342,7 +341,7 @@ static ssize_t ad7152_show_ch2_gain(struct device *dev,
char *buf)
{
struct iio_dev *dev_info = dev_get_drvdata(dev);
struct ad7152_chip_info *chip = dev_info->dev_data;
struct ad7152_chip_info *chip = iio_priv(dev_info);

return sprintf(buf, "%d\n", chip->ch2_gain);
}
Expand All @@ -353,7 +352,7 @@ static ssize_t ad7152_store_ch2_gain(struct device *dev,
size_t len)
{
struct iio_dev *dev_info = dev_get_drvdata(dev);
struct ad7152_chip_info *chip = dev_info->dev_data;
struct ad7152_chip_info *chip = iio_priv(dev_info);
unsigned long data;
int ret;

Expand All @@ -378,7 +377,7 @@ static ssize_t ad7152_show_ch1_setup(struct device *dev,
char *buf)
{
struct iio_dev *dev_info = dev_get_drvdata(dev);
struct ad7152_chip_info *chip = dev_info->dev_data;
struct ad7152_chip_info *chip = iio_priv(dev_info);

return sprintf(buf, "0x%02x\n", chip->ch1_setup);
}
Expand All @@ -389,7 +388,7 @@ static ssize_t ad7152_store_ch1_setup(struct device *dev,
size_t len)
{
struct iio_dev *dev_info = dev_get_drvdata(dev);
struct ad7152_chip_info *chip = dev_info->dev_data;
struct ad7152_chip_info *chip = iio_priv(dev_info);
unsigned long data;
int ret;

Expand All @@ -413,7 +412,7 @@ static ssize_t ad7152_show_ch2_setup(struct device *dev,
char *buf)
{
struct iio_dev *dev_info = dev_get_drvdata(dev);
struct ad7152_chip_info *chip = dev_info->dev_data;
struct ad7152_chip_info *chip = iio_priv(dev_info);

return sprintf(buf, "0x%02x\n", chip->ch2_setup);
}
Expand All @@ -424,7 +423,7 @@ static ssize_t ad7152_store_ch2_setup(struct device *dev,
size_t len)
{
struct iio_dev *dev_info = dev_get_drvdata(dev);
struct ad7152_chip_info *chip = dev_info->dev_data;
struct ad7152_chip_info *chip = iio_priv(dev_info);
unsigned long data;
int ret;

Expand All @@ -448,7 +447,7 @@ static ssize_t ad7152_show_filter_rate_setup(struct device *dev,
char *buf)
{
struct iio_dev *dev_info = dev_get_drvdata(dev);
struct ad7152_chip_info *chip = dev_info->dev_data;
struct ad7152_chip_info *chip = iio_priv(dev_info);

return sprintf(buf, "0x%02x\n", chip->filter_rate_setup);
}
Expand All @@ -459,7 +458,7 @@ static ssize_t ad7152_store_filter_rate_setup(struct device *dev,
size_t len)
{
struct iio_dev *dev_info = dev_get_drvdata(dev);
struct ad7152_chip_info *chip = dev_info->dev_data;
struct ad7152_chip_info *chip = iio_priv(dev_info);
unsigned long data;
int ret;

Expand Down Expand Up @@ -509,31 +508,27 @@ static int __devinit ad7152_probe(struct i2c_client *client,
const struct i2c_device_id *id)
{
int ret = 0;
struct ad7152_chip_info *chip = kzalloc(sizeof(*chip), GFP_KERNEL);
if (chip == NULL) {
struct ad7152_chip_info *chip;
struct iio_dev *indio_dev;

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 */
i2c_set_clientdata(client, chip);
i2c_set_clientdata(client, indio_dev);

chip->client = client;

chip->indio_dev = iio_allocate_device(0);
if (chip->indio_dev == NULL) {
ret = -ENOMEM;
goto error_free_chip;
}

/* Echipabilish that the iio_dev is a child of the i2c device */
chip->indio_dev->name = id->name;
chip->indio_dev->dev.parent = &client->dev;
chip->indio_dev->info = &ad7152_info;
chip->indio_dev->dev_data = (void *)(chip);
chip->indio_dev->modes = INDIO_DIRECT_MODE;
indio_dev->name = id->name;
indio_dev->dev.parent = &client->dev;
indio_dev->info = &ad7152_info;
indio_dev->modes = INDIO_DIRECT_MODE;

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

Expand All @@ -542,20 +537,16 @@ static int __devinit ad7152_probe(struct i2c_client *client,
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 ad7152_remove(struct i2c_client *client)
{
struct ad7152_chip_info *chip = i2c_get_clientdata(client);
struct iio_dev *indio_dev = chip->indio_dev;
struct iio_dev *indio_dev = i2c_get_clientdata(client);

iio_device_unregister(indio_dev);
kfree(chip);

return 0;
}
Expand Down

0 comments on commit 703c895

Please sign in to comment.