*
  * Returns the device states parsed from the OF node. The memory for the states
  * is allocated by this function and is the responsibility of the caller to
- * free the memory after use. If no domain idle states is found it returns
- * -EINVAL and in case of errors, a negative error code.
+ * free the memory after use. If any or zero compatible domain idle states is
+ * found it returns 0 and in case of errors, a negative error code is returned.
  */
 int of_genpd_parse_idle_states(struct device_node *dn,
                        struct genpd_power_state **states, int *n)
        int ret;
 
        ret = genpd_iterate_idle_states(dn, NULL);
-       if (ret <= 0)
-               return ret < 0 ? ret : -EINVAL;
+       if (ret < 0)
+               return ret;
+
+       if (!ret) {
+               *states = NULL;
+               *n = 0;
+               return 0;
+       }
 
        st = kcalloc(ret, sizeof(*st), GFP_KERNEL);
        if (!st)