Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 561427f5 authored by Axel Lin's avatar Axel Lin Committed by Mark Brown
Browse files

mfd: pcf50633: Correct device name for pcf50633 regulator



Change the device name of the regulator function to the one chosen for
MODULE_ALIAS. This fixes kernel auto-module loading for the regulator function.

Signed-off-by: default avatarAxel Lin <axel.lin@ingics.com>
Acked-by: default avatarLee Jones <lee.jones@linaro.org>
Signed-off-by: default avatarMark Brown <broonie@linaro.org>
parent 6ce4eac1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -245,7 +245,7 @@ static int pcf50633_probe(struct i2c_client *client,
	for (i = 0; i < PCF50633_NUM_REGULATORS; i++) {
		struct platform_device *pdev;

		pdev = platform_device_alloc("pcf50633-regltr", i);
		pdev = platform_device_alloc("pcf50633-regulator", i);
		if (!pdev) {
			dev_err(pcf->dev, "Cannot create regulator %d\n", i);
			continue;
+1 −1
Original line number Diff line number Diff line
@@ -105,7 +105,7 @@ static int pcf50633_regulator_probe(struct platform_device *pdev)

static struct platform_driver pcf50633_regulator_driver = {
	.driver = {
		.name = "pcf50633-regltr",
		.name = "pcf50633-regulator",
	},
	.probe = pcf50633_regulator_probe,
};