}
        exynos_ehci = to_exynos_ehci(hcd);
 
-       if (of_device_is_compatible(pdev->dev.of_node,
-                                       "samsung,exynos5440-ehci"))
-               goto skip_phy;
-
        err = exynos_ehci_get_phy(&pdev->dev, exynos_ehci);
        if (err)
                goto fail_clk;
 
-skip_phy:
-
        exynos_ehci->clk = devm_clk_get(&pdev->dev, "usbhost");
 
        if (IS_ERR(exynos_ehci->clk)) {
 #ifdef CONFIG_OF
 static const struct of_device_id exynos_ehci_match[] = {
        { .compatible = "samsung,exynos4210-ehci" },
-       { .compatible = "samsung,exynos5440-ehci" },
        {},
 };
 MODULE_DEVICE_TABLE(of, exynos_ehci_match);
 
 
        exynos_ohci = to_exynos_ohci(hcd);
 
-       if (of_device_is_compatible(pdev->dev.of_node,
-                                       "samsung,exynos5440-ohci"))
-               goto skip_phy;
-
        err = exynos_ohci_get_phy(&pdev->dev, exynos_ohci);
        if (err)
                goto fail_clk;
 
-skip_phy:
        exynos_ohci->clk = devm_clk_get(&pdev->dev, "usbhost");
 
        if (IS_ERR(exynos_ohci->clk)) {
 #ifdef CONFIG_OF
 static const struct of_device_id exynos_ohci_match[] = {
        { .compatible = "samsung,exynos4210-ohci" },
-       { .compatible = "samsung,exynos5440-ohci" },
        {},
 };
 MODULE_DEVICE_TABLE(of, exynos_ohci_match);