return 0;
 }
 
-/*
- * Certain older XenBus toolstack cannot handle reading values that are
- * not populated. Some Xen 3.4 installation are incapable of doing this
- * so if we are running on anything older than 4 do not attempt to read
- * control/platform-feature-xs_reset_watches.
- */
-static bool xen_strict_xenbus_quirk(void)
-{
-#ifdef CONFIG_X86
-       uint32_t eax, ebx, ecx, edx, base;
-
-       base = xen_cpuid_base();
-       cpuid(base + 1, &eax, &ebx, &ecx, &edx);
-
-       if ((eax >> 16) < 4)
-               return true;
-#endif
-       return false;
-
-}
 static void xs_reset_watches(void)
 {
        int err;
        if (!xen_hvm_domain() || xen_initial_domain())
                return;
 
-       if (xen_strict_xenbus_quirk())
-               return;
-
        if (!xenbus_read_unsigned("control",
                                  "platform-feature-xs_reset_watches", 0))
                return;