diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-09-11 00:22:18 -0400 |
---|---|---|
committer | Chanwoo Choi <cw00.choi@samsung.com> | 2013-09-26 20:37:01 -0400 |
commit | 7c0f6558f893eb5eddb52ee0fa84c2d43b2c199a (patch) | |
tree | eba6fda5f906d8b1d378367d3a1ba3f340436b95 /drivers/extcon/extcon-adc-jack.c | |
parent | 338de0ca682ca95d3f6185459e11540c37dd8a2a (diff) |
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.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 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) | |||
95 | static int adc_jack_probe(struct platform_device *pdev) | 95 | static int adc_jack_probe(struct platform_device *pdev) |
96 | { | 96 | { |
97 | struct adc_jack_data *data; | 97 | struct adc_jack_data *data; |
98 | struct adc_jack_pdata *pdata = pdev->dev.platform_data; | 98 | struct adc_jack_pdata *pdata = dev_get_platdata(&pdev->dev); |
99 | int i, err = 0; | 99 | int i, err = 0; |
100 | 100 | ||
101 | data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL); | 101 | data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL); |