Hi Rob, this is racy. The deallocation of devm_* stuff is done _after_ the driver _remove callback ran, where in the gpio_regulator case it would already have done at least > gpio_free_array(drvdata->gpios, drvdata->nr_gpios); > > kfree(drvdata->states); before the regulator gets deregistered, thus producing a race condition. Also Mark's mail address is Mark Brown <broonie@xxxxxxxxxx> and linux-kernel@xxxxxxxxxxxxxxx should be included as well. Heiko Am Donnerstag, 22. Mai 2014, 15:51:06 schrieb Rob Jones: > Use devm_regulator_register in probe/remove. > > Reviewed-by: Ian Molton <ian.molton@xxxxxxxxxxxxxxx> > Signed-off-by: Rob Jones <rob.jones@xxxxxxxxxxxxxxx> > --- > drivers/regulator/gpio-regulator.c | 4 +--- > 1 file changed, 1 insertion(+), 3 deletions(-) > > diff --git a/drivers/regulator/gpio-regulator.c > b/drivers/regulator/gpio-regulator.c index 989b23b..994a050 100644 > --- a/drivers/regulator/gpio-regulator.c > +++ b/drivers/regulator/gpio-regulator.c > @@ -337,7 +337,7 @@ static int gpio_regulator_probe(struct platform_device > *pdev) cfg.ena_gpio_flags |= GPIOF_OUT_INIT_HIGH; > } > > - drvdata->dev = regulator_register(&drvdata->desc, &cfg); > + drvdata->dev = devm_regulator_register(&pdev->dev, &drvdata->desc, &cfg); > if (IS_ERR(drvdata->dev)) { > ret = PTR_ERR(drvdata->dev); > dev_err(&pdev->dev, "Failed to register regulator: %d\n", ret); > @@ -364,8 +364,6 @@ static int gpio_regulator_remove(struct platform_device > *pdev) { > struct gpio_regulator_data *drvdata = platform_get_drvdata(pdev); > > - regulator_unregister(drvdata->dev); > - > gpio_free_array(drvdata->gpios, drvdata->nr_gpios); > > kfree(drvdata->states); -- To unsubscribe from this list: send the line "unsubscribe linux-gpio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html