diff options
| author | Guenter Roeck <linux@roeck-us.net> | 2013-02-04 20:26:00 +0000 | 
|---|---|---|
| committer | Jonathan Cameron <jic23@kernel.org> | 2013-02-06 19:23:52 +0000 | 
| commit | 5aa57f0a655276f62683c0cc714cd6328d98e08a (patch) | |
| tree | df06afdc9f598c3da0671a296d2319191e46be2b /drivers/extcon | |
| parent | 860c9c54272deaab43b40dbe416becb34abd344f (diff) | |
| download | olio-linux-3.10-5aa57f0a655276f62683c0cc714cd6328d98e08a.tar.xz olio-linux-3.10-5aa57f0a655276f62683c0cc714cd6328d98e08a.zip  | |
iio: Update iio_channel_get API to use consumer device pointer as argument
For iio_channel_get to work with OF based configurations, it needs the
consumer device pointer instead of the consumer device name as argument.
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Acked-by: Anton Vorontsov <anton@enomsg.org>
Acked-by: Chanwoo Choi <cw00.choi@samsung.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'drivers/extcon')
| -rw-r--r-- | drivers/extcon/extcon-adc-jack.c | 3 | 
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/extcon/extcon-adc-jack.c b/drivers/extcon/extcon-adc-jack.c index eda2a1aa4ad..d0233cd18ff 100644 --- a/drivers/extcon/extcon-adc-jack.c +++ b/drivers/extcon/extcon-adc-jack.c @@ -135,8 +135,7 @@ static int adc_jack_probe(struct platform_device *pdev)  		;  	data->num_conditions = i; -	data->chan = iio_channel_get(dev_name(&pdev->dev), -			pdata->consumer_channel); +	data->chan = iio_channel_get(&pdev->dev, pdata->consumer_channel);  	if (IS_ERR(data->chan)) {  		err = PTR_ERR(data->chan);  		goto out;  |