@@ -2671,6 +2671,8 @@ int of_genpd_add_provider_simple(struct device_node *np,
if (!dev)
genpd->sync_state = GENPD_SYNC_STATE_SIMPLE;
+ else if (!dev_has_sync_state(dev))
+ dev_set_drv_sync_state(dev, of_genpd_sync_state);
device_set_node(&genpd->dev, fwnode);
@@ -2740,6 +2742,8 @@ int of_genpd_add_provider_onecell(struct device_node *np,
if (!dev)
sync_state = true;
+ else if (!dev_has_sync_state(dev))
+ dev_set_drv_sync_state(dev, of_genpd_sync_state);
for (i = 0; i < data->num_domains; i++) {
genpd = data->domains[i];
Unless the typical platform driver that act as genpd provider, has its own ->sync_state() callback implemented let's default to use of_genpd_sync_state(). More precisely, while adding a genpd OF provider let's assign the ->sync_state() callback, in case the fwnode has a device and its driver/bus doesn't have the ->sync_state() set already. In this way the typical platform driver doesn't need to assign ->sync_state(), unless it has some additional things to manage beyond genpds. Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org> --- drivers/pmdomain/core.c | 4 ++++ 1 file changed, 4 insertions(+)