diff options
author | Chanwoo Choi <cw00.choi@samsung.com> | 2016-12-26 12:47:13 +0100 |
---|---|---|
committer | Chanwoo Choi <cw00.choi@samsung.com> | 2017-01-09 02:04:11 +0100 |
commit | 6e3a7e89ff1a13d6e09f63ce9eff4ad3fad7b544 (patch) | |
tree | a589ac9429c273ec2143da7e9544a2e770d0fff8 /drivers/extcon/extcon-adc-jack.c | |
parent | extcon: int3496: Add Intel INT3496 ACPI device extcon driver (diff) | |
download | linux-6e3a7e89ff1a13d6e09f63ce9eff4ad3fad7b544.tar.xz linux-6e3a7e89ff1a13d6e09f63ce9eff4ad3fad7b544.zip |
extcon: adc-jack: Use the internal data instead of using struct extcon_dev
This patch uses the internal dev instance instead of using the field of struct
extcon_dev because the core structure (extcon_dev) of extcon have to be touched
by only extcon core driver.
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
Diffstat (limited to 'drivers/extcon/extcon-adc-jack.c')
-rw-r--r-- | drivers/extcon/extcon-adc-jack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/extcon/extcon-adc-jack.c b/drivers/extcon/extcon-adc-jack.c index bc538708c753..6f6537ab0a79 100644 --- a/drivers/extcon/extcon-adc-jack.c +++ b/drivers/extcon/extcon-adc-jack.c @@ -67,7 +67,7 @@ static void adc_jack_handler(struct work_struct *work) ret = iio_read_channel_raw(data->chan, &adc_val); if (ret < 0) { - dev_err(&data->edev->dev, "read channel() error: %d\n", ret); + dev_err(data->dev, "read channel() error: %d\n", ret); return; } |