[PATCH 1/4] mfd: rk808: Set global instance unconditionally

From: Robin Murphy
Date: Tue Dec 10 2019 - 08:24:31 EST


The RK817 syscore ops rely on the global rk808_i2c_client being set,
but are essentially independent of whether this driver has authority
over system power control - indeed, setting the SLEEP pin functionality
is most likely wanted when firmware is in charge of power via PSCI.
There's also no harm in setting it unconditionally anyway, so do it.

Signed-off-by: Robin Murphy <robin.murphy@xxxxxxx>
---
drivers/mfd/rk808.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/mfd/rk808.c b/drivers/mfd/rk808.c
index 616e44e7ef98..f2f2f98552a0 100644
--- a/drivers/mfd/rk808.c
+++ b/drivers/mfd/rk808.c
@@ -666,6 +666,8 @@ static int rk808_probe(struct i2c_client *client,
}
}

+ rk808_i2c_client = client;
+
ret = devm_mfd_add_devices(&client->dev, PLATFORM_DEVID_NONE,
cells, nr_cells, NULL, 0,
regmap_irq_get_domain(rk808->irq_data));
@@ -675,7 +677,6 @@ static int rk808_probe(struct i2c_client *client,
}

if (of_property_read_bool(np, "rockchip,system-power-controller")) {
- rk808_i2c_client = client;
pm_power_off = rk808->pm_pwroff_fn;
pm_power_off_prepare = rk808->pm_pwroff_prep_fn;
}
--
2.17.1