Use of_device_get_match_data() to make the code slightly smaller.
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
Acked-by: Adam Thomson <Adam.Thomson.Opensource@diasemi.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
                return ret;
 
 #ifdef CONFIG_OF
-       if (!id) {
-               struct device_node *np = client->dev.of_node;
-               const struct of_device_id *deviceid;
-
-               deviceid = of_match_node(dialog_dt_ids, np);
-               id = deviceid->data;
-       }
+       if (!id)
+               id = of_device_get_match_data(&client->dev);
 #endif
 
        if (!id) {