From: Sachin Kamat Date: Sat, 28 Sep 2013 10:22:30 +0000 (+0530) Subject: staging: imx-drm: Remove redundant of_match_ptr X-Git-Tag: next-20131017~19^2~327 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=28d31374d6356e15bdfbe9f24303305363ea7ad3;p=karo-tx-linux.git staging: imx-drm: Remove redundant of_match_ptr 'imx_ldb_dt_ids' is always compiled in. Hence of_match_ptr() is not needed. Signed-off-by: Sachin Kamat Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/imx-drm/imx-ldb.c b/drivers/staging/imx-drm/imx-ldb.c index b81ed41766b9..926f49339b26 100644 --- a/drivers/staging/imx-drm/imx-ldb.c +++ b/drivers/staging/imx-drm/imx-ldb.c @@ -466,8 +466,7 @@ static int imx_ldb_probe(struct platform_device *pdev) { struct device_node *np = pdev->dev.of_node; const struct of_device_id *of_id = - of_match_device(of_match_ptr(imx_ldb_dt_ids), - &pdev->dev); + of_match_device(imx_ldb_dt_ids, &pdev->dev); struct device_node *child; const u8 *edidp; struct imx_ldb *imx_ldb;