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 | |
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')
-rw-r--r-- | drivers/extcon/extcon-adc-jack.c | 2 | ||||
-rw-r--r-- | drivers/extcon/extcon-gpio.c | 2 | ||||
-rw-r--r-- | drivers/extcon/extcon-palmas.c | 2 |
3 files changed, 3 insertions, 3 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); |
diff --git a/drivers/extcon/extcon-gpio.c b/drivers/extcon/extcon-gpio.c index 862743bc825f..cd7dbb60f60f 100644 --- a/drivers/extcon/extcon-gpio.c +++ b/drivers/extcon/extcon-gpio.c | |||
@@ -78,7 +78,7 @@ static ssize_t extcon_gpio_print_state(struct extcon_dev *edev, char *buf) | |||
78 | 78 | ||
79 | static int gpio_extcon_probe(struct platform_device *pdev) | 79 | static int gpio_extcon_probe(struct platform_device *pdev) |
80 | { | 80 | { |
81 | struct gpio_extcon_platform_data *pdata = pdev->dev.platform_data; | 81 | struct gpio_extcon_platform_data *pdata = dev_get_platdata(&pdev->dev); |
82 | struct gpio_extcon_data *extcon_data; | 82 | struct gpio_extcon_data *extcon_data; |
83 | int ret; | 83 | int ret; |
84 | 84 | ||
diff --git a/drivers/extcon/extcon-palmas.c b/drivers/extcon/extcon-palmas.c index 89fdd05c5fd6..0c2fb68fb791 100644 --- a/drivers/extcon/extcon-palmas.c +++ b/drivers/extcon/extcon-palmas.c | |||
@@ -135,7 +135,7 @@ static void palmas_enable_irq(struct palmas_usb *palmas_usb) | |||
135 | static int palmas_usb_probe(struct platform_device *pdev) | 135 | static int palmas_usb_probe(struct platform_device *pdev) |
136 | { | 136 | { |
137 | struct palmas *palmas = dev_get_drvdata(pdev->dev.parent); | 137 | struct palmas *palmas = dev_get_drvdata(pdev->dev.parent); |
138 | struct palmas_usb_platform_data *pdata = pdev->dev.platform_data; | 138 | struct palmas_usb_platform_data *pdata = dev_get_platdata(&pdev->dev); |
139 | struct device_node *node = pdev->dev.of_node; | 139 | struct device_node *node = pdev->dev.of_node; |
140 | struct palmas_usb *palmas_usb; | 140 | struct palmas_usb *palmas_usb; |
141 | int status; | 141 | int status; |