aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/extcon/extcon-adc-jack.c
diff options
context:
space:
mode:
authorJingoo Han <jg1.han@samsung.com>2013-09-11 13:22:18 +0900
committerChanwoo Choi <cw00.choi@samsung.com>2013-09-27 09:37:01 +0900
commit7c0f6558f893eb5eddb52ee0fa84c2d43b2c199a (patch)
treeeba6fda5f906d8b1d378367d3a1ba3f340436b95 /drivers/extcon/extcon-adc-jack.c
parentextcon: gpio: Use gpio driver/chip debounce if supported (diff)
downloadlinux-dev-7c0f6558f893eb5eddb52ee0fa84c2d43b2c199a.tar.xz
linux-dev-7c0f6558f893eb5eddb52ee0fa84c2d43b2c199a.zip
extcon: use dev_get_platdata()
Use the wrapper function for retrieving the platform data instead of accessing dev->platform_data directly. This is a cosmetic change to make the code simpler and enhance the readability. Signed-off-by: Jingoo Han <jg1.han@samsung.com> 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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/extcon/extcon-adc-jack.c b/drivers/extcon/extcon-adc-jack.c
index 5d16428afd53..5694c468b958 100644
--- a/drivers/extcon/extcon-adc-jack.c
+++ b/drivers/extcon/extcon-adc-jack.c
@@ -95,7 +95,7 @@ static irqreturn_t adc_jack_irq_thread(int irq, void *_data)
static int adc_jack_probe(struct platform_device *pdev)
{
struct adc_jack_data *data;
- struct adc_jack_pdata *pdata = pdev->dev.platform_data;
+ struct adc_jack_pdata *pdata = dev_get_platdata(&pdev->dev);
int i, err = 0;
data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL);