From 017bb04e846be82715769799aafa934feab0e443 Mon Sep 17 00:00:00 2001 From: Thierry Reding Date: Mon, 11 Jul 2016 12:16:01 +0200 Subject: pwm: atmel: Use of_device_get_match_data() Use of_device_get_match_data() instead of an open-coded variant. Signed-off-by: Thierry Reding --- drivers/pwm/pwm-atmel.c | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) (limited to 'drivers/pwm') diff --git a/drivers/pwm/pwm-atmel.c b/drivers/pwm/pwm-atmel.c index 8083015b8641..e6b8b1b7e6ba 100644 --- a/drivers/pwm/pwm-atmel.c +++ b/drivers/pwm/pwm-atmel.c @@ -337,15 +337,8 @@ atmel_pwm_get_driver_data(struct platform_device *pdev) { const struct platform_device_id *id; - if (pdev->dev.of_node) { - const struct of_device_id *match; - - match = of_match_device(atmel_pwm_dt_ids, &pdev->dev); - if (!match) - return NULL; - - return match->data; - } + if (pdev->dev.of_node) + return of_device_get_match_data(&pdev->dev); id = platform_get_device_id(pdev); -- cgit v1.2.3