#include <linux/module.h>
 #include <linux/mutex.h>
 #include <linux/of.h>
+#include <linux/of_device.h>
 #include <linux/of_irq.h>
 #include <linux/of_reserved_mem.h>
 #include <linux/platform_device.h>
 static int aspeed_video_probe(struct platform_device *pdev)
 {
        const struct aspeed_video_config *config;
-       const struct of_device_id *match;
        struct aspeed_video *video;
        int rc;
 
        if (IS_ERR(video->base))
                return PTR_ERR(video->base);
 
-       match = of_match_node(aspeed_video_of_match, pdev->dev.of_node);
-       if (!match)
-               return -EINVAL;
+       config = of_device_get_match_data(&pdev->dev);
+       if (!config)
+               return -ENODEV;
 
-       config = match->data;
        video->jpeg_mode = config->jpeg_mode;
        video->comp_size_read = config->comp_size_read;