Simplify code by replacing custom code by generic helper.
Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
Signed-off-by: Inki Dae <inki.dae@samsung.com>
 static int hdmi_probe(struct platform_device *pdev)
 {
        struct device_node *ddc_node, *phy_node;
-       const struct of_device_id *match;
        struct device *dev = &pdev->dev;
        struct hdmi_context *hdata;
        struct resource *res;
        if (!hdata)
                return -ENOMEM;
 
-       match = of_match_device(hdmi_match_types, dev);
-       if (!match)
-               return -ENODEV;
-
-       hdata->drv_data = match->data;
+       hdata->drv_data = of_device_get_match_data(dev);
 
        platform_set_drvdata(pdev, hdata);