aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/i2c/busses/i2c-s3c2410.c
diff options
context:
space:
mode:
authorJingoo Han <jg1.han@samsung.com>2013-07-30 03:59:33 -0400
committerWolfram Sang <wsa@the-dreams.de>2013-08-19 13:46:30 -0400
commit6d4028c644edc0a2e4a8c948ebf81e8f2f09726e (patch)
tree89368ad03dc603de4af756ba3e5260cee489f023 /drivers/i2c/busses/i2c-s3c2410.c
parentcda2109a26eb6fa58acfeae878eed87492480eae (diff)
i2c: use dev_get_platdata()
Use the wrapper function for retrieving the platform data instead of accessing dev->platform_data directly. Signed-off-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Diffstat (limited to 'drivers/i2c/busses/i2c-s3c2410.c')
-rw-r--r--drivers/i2c/busses/i2c-s3c2410.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/i2c/busses/i2c-s3c2410.c b/drivers/i2c/busses/i2c-s3c2410.c
index cab1c91b75a3..0a077b1ef94f 100644
--- a/drivers/i2c/busses/i2c-s3c2410.c
+++ b/drivers/i2c/busses/i2c-s3c2410.c
@@ -1033,7 +1033,7 @@ static int s3c24xx_i2c_probe(struct platform_device *pdev)
1033 int ret; 1033 int ret;
1034 1034
1035 if (!pdev->dev.of_node) { 1035 if (!pdev->dev.of_node) {
1036 pdata = pdev->dev.platform_data; 1036 pdata = dev_get_platdata(&pdev->dev);
1037 if (!pdata) { 1037 if (!pdata) {
1038 dev_err(&pdev->dev, "no platform data\n"); 1038 dev_err(&pdev->dev, "no platform data\n");
1039 return -EINVAL; 1039 return -EINVAL;