Unverified Commit 41cff178 authored by Douglas Anderson's avatar Douglas Anderson Committed by Mark Brown
Browse files

regulator: Set PROBE_PREFER_ASYNCHRONOUS for drivers between 5.15 and 6.1



This follows on the change ("regulator: Set PROBE_PREFER_ASYNCHRONOUS
for drivers that existed in 4.14") but changes regulators didn't exist
in Linux 5.15 but did exist in Linux 6.1.

Signed-off-by: default avatarDouglas Anderson <dianders@chromium.org>
Link: https://lore.kernel.org/r/20230316125351.6.Ibc8a86ddd5055ebbbe487a529199db7b36ccad1a@changeid


Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 46600ab1
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -320,6 +320,7 @@ MODULE_DEVICE_TABLE(of, max20086_dt_ids);
static struct i2c_driver max20086_regulator_driver = {
	.driver = {
		.name = "max20086",
		.probe_type = PROBE_PREFER_ASYNCHRONOUS,
		.of_match_table = of_match_ptr(max20086_dt_ids),
	},
	.probe_new = max20086_i2c_probe,
+1 −0
Original line number Diff line number Diff line
@@ -501,6 +501,7 @@ static int max597x_regulator_probe(struct platform_device *pdev)
static struct platform_driver max597x_regulator_driver = {
	.driver = {
		.name = "max597x-regulator",
		.probe_type = PROBE_PREFER_ASYNCHRONOUS,
	},
	.probe = max597x_regulator_probe,
};
+1 −0
Original line number Diff line number Diff line
@@ -495,6 +495,7 @@ MODULE_DEVICE_TABLE(platform, mt6331_platform_ids);
static struct platform_driver mt6331_regulator_driver = {
	.driver = {
		.name = "mt6331-regulator",
		.probe_type = PROBE_PREFER_ASYNCHRONOUS,
	},
	.probe = mt6331_regulator_probe,
	.id_table = mt6331_platform_ids,
+1 −0
Original line number Diff line number Diff line
@@ -410,6 +410,7 @@ MODULE_DEVICE_TABLE(platform, mt6332_platform_ids);
static struct platform_driver mt6332_regulator_driver = {
	.driver = {
		.name = "mt6332-regulator",
		.probe_type = PROBE_PREFER_ASYNCHRONOUS,
	},
	.probe = mt6332_regulator_probe,
	.id_table = mt6332_platform_ids,
+1 −0
Original line number Diff line number Diff line
@@ -379,6 +379,7 @@ MODULE_DEVICE_TABLE(platform, mt6370_devid_table);
static struct platform_driver mt6370_regulator_driver = {
	.driver = {
		.name = "mt6370-regulator",
		.probe_type = PROBE_PREFER_ASYNCHRONOUS,
	},
	.id_table = mt6370_devid_table,
	.probe = mt6370_regulator_probe,
Loading