aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/can/ti_hecc.c
diff options
context:
space:
mode:
authorJingoo Han <jg1.han@samsung.com>2013-09-10 17:43:12 +0900
committerMarc Kleine-Budde <mkl@pengutronix.de>2013-09-21 15:43:15 +0200
commitfc218471c69edd43c34d304cd737f0958d8ce195 (patch)
tree27cb0c9465b154ca1ef2cfbba22426ba3ee7e9bd /drivers/net/can/ti_hecc.c
parentcan: softing: use dev_get_platdata() (diff)
downloadlinux-dev-fc218471c69edd43c34d304cd737f0958d8ce195.tar.xz
linux-dev-fc218471c69edd43c34d304cd737f0958d8ce195.zip
can: ti_hecc: 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: Marc Kleine-Budde <mkl@pengutronix.de>
Diffstat (limited to 'drivers/net/can/ti_hecc.c')
-rw-r--r--drivers/net/can/ti_hecc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/can/ti_hecc.c b/drivers/net/can/ti_hecc.c
index 3a349a22d5bc..beb5ef834f0f 100644
--- a/drivers/net/can/ti_hecc.c
+++ b/drivers/net/can/ti_hecc.c
@@ -894,7 +894,7 @@ static int ti_hecc_probe(struct platform_device *pdev)
void __iomem *addr;
int err = -ENODEV;
- pdata = pdev->dev.platform_data;
+ pdata = dev_get_platdata(&pdev->dev);
if (!pdata) {
dev_err(&pdev->dev, "No platform data\n");
goto probe_exit;