Message ID | 20241014161109.2222-2-andreas@kemnade.info |
---|---|
State | New |
Headers | show |
Series | mfd: twl: Add clock for TWL6030 | expand |
On Mon, 14 Oct 2024 18:11:07 +0200, Andreas Kemnade wrote: > Also the TWL6030 has some clocks, so add a subdevice for that. > > Applied, thanks! [1/3] mfd: twl-core: Add a clock subdevice for the TWL6030 commit: 5ebc60259a0fdd13aef077726b1773f1ae091efc -- Lee Jones [李琼斯]
Am Tue, 15 Oct 2024 09:33:10 +0100 schrieb Lee Jones <lee@kernel.org>: > On Mon, 14 Oct 2024 18:11:07 +0200, Andreas Kemnade wrote: > > Also the TWL6030 has some clocks, so add a subdevice for that. > > > > > > Applied, thanks! > > [1/3] mfd: twl-core: Add a clock subdevice for the TWL6030 > commit: 5ebc60259a0fdd13aef077726b1773f1ae091efc > hmm, this does not appear in linux-next. Did anything went wrong? Regards, Andreas
On Wed, 23 Oct 2024, Andreas Kemnade wrote: > Am Tue, 15 Oct 2024 09:33:10 +0100 > schrieb Lee Jones <lee@kernel.org>: > > > On Mon, 14 Oct 2024 18:11:07 +0200, Andreas Kemnade wrote: > > > Also the TWL6030 has some clocks, so add a subdevice for that. > > > > > > > > > > Applied, thanks! > > > > [1/3] mfd: twl-core: Add a clock subdevice for the TWL6030 > > commit: 5ebc60259a0fdd13aef077726b1773f1ae091efc > > > hmm, this does not appear in linux-next. Did anything went wrong? Looks like a clerical error on my part. Thanks for noticing. Re-applied and pushed.
diff --git a/drivers/mfd/twl-core.c b/drivers/mfd/twl-core.c index c130ffef182f..f89eda4a17fe 100644 --- a/drivers/mfd/twl-core.c +++ b/drivers/mfd/twl-core.c @@ -711,6 +711,10 @@ static struct of_dev_auxdata twl_auxdata_lookup[] = { { /* sentinel */ }, }; +static const struct mfd_cell twl6030_cells[] = { + { .name = "twl6030-clk" }, +}; + static const struct mfd_cell twl6032_cells[] = { { .name = "twl6032-clk" }, }; @@ -861,17 +865,23 @@ twl_probe(struct i2c_client *client) TWL4030_DCDC_GLOBAL_CFG); } - if (id->driver_data == (TWL6030_CLASS | TWL6032_SUBCLASS)) { - status = devm_mfd_add_devices(&client->dev, - PLATFORM_DEVID_NONE, - twl6032_cells, - ARRAY_SIZE(twl6032_cells), - NULL, 0, NULL); + if (twl_class_is_6030()) { + const struct mfd_cell *cells; + int num_cells; + + if (id->driver_data & TWL6032_SUBCLASS) { + cells = twl6032_cells; + num_cells = ARRAY_SIZE(twl6032_cells); + } else { + cells = twl6030_cells; + num_cells = ARRAY_SIZE(twl6030_cells); + } + + status = devm_mfd_add_devices(&client->dev, PLATFORM_DEVID_NONE, + cells, num_cells, NULL, 0, NULL); if (status < 0) goto free; - } - if (twl_class_is_6030()) { if (of_device_is_system_power_controller(node)) { if (!pm_power_off) pm_power_off = twl6030_power_off;