#include <linux/module.h>
 #include <linux/pci.h>
 #include <linux/of.h>
+#include <linux/of_device.h>
 #include <linux/platform_device.h>
 #include <linux/usb/phy.h>
 #include <linux/slab.h>
 
 static int xhci_plat_probe(struct platform_device *pdev)
 {
-       const struct of_device_id *match;
+       const struct xhci_plat_priv *priv_match;
        const struct hc_driver  *driver;
        struct device           *sysdev;
        struct xhci_hcd         *xhci;
        }
 
        xhci = hcd_to_xhci(hcd);
-       match = of_match_node(usb_xhci_of_match, pdev->dev.of_node);
-       if (match) {
-               const struct xhci_plat_priv *priv_match = match->data;
+       priv_match = of_device_get_match_data(&pdev->dev);
+       if (priv_match) {
                struct xhci_plat_priv *priv = hcd_to_xhci_priv(hcd);
 
                /* Just copy data for now */