static struct platform_driver bd71828_regulator = {
        .driver = {
-               .name = "bd71828-pmic"
+               .name = "bd71828-pmic",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
        },
        .probe = bd71828_probe,
 };
 
 static struct platform_driver bd957x_regulator = {
        .driver = {
                .name = "bd957x-pmic",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
        },
        .probe = bd957x_probe,
        .id_table = bd957x_pmic_id,
 
        .probe          = cros_ec_regulator_probe,
        .driver         = {
                .name           = "cros-ec-regulator",
+               .probe_type     = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = regulator_cros_ec_of_match,
        },
 };
 
 static struct i2c_driver fan53880_regulator_driver = {
        .driver = {
                .name = "fan53880",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = fan53880_dt_ids,
        },
        .probe_new = fan53880_i2c_probe,
 
 static struct i2c_driver max77826_regulator_driver = {
        .driver = {
                .name = "max77826",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = of_match_ptr(max77826_of_match),
        },
        .probe_new = max77826_i2c_probe,
 
 static struct i2c_driver mp5416_regulator_driver = {
        .driver = {
                .name = "mp5416",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = of_match_ptr(mp5416_of_match),
        },
        .probe_new = mp5416_i2c_probe,
 
 static struct i2c_driver mp8859_regulator_driver = {
        .driver = {
                .name = "mp8859",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = of_match_ptr(mp8859_dt_id),
        },
        .probe_new = mp8859_i2c_probe,
 
 static struct i2c_driver mp886x_regulator_driver = {
        .driver = {
                .name = "mp886x-regulator",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = mp886x_dt_ids,
        },
        .probe_new = mp886x_i2c_probe,
 
 static struct i2c_driver mpq7920_regulator_driver = {
        .driver = {
                .name = "mpq7920",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = of_match_ptr(mpq7920_of_match),
        },
        .probe_new = mpq7920_i2c_probe,
 
 static struct platform_driver mt6360_regulator_driver = {
        .driver = {
                .name = "mt6360-regulator",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
        },
        .probe = mt6360_regulator_probe,
        .id_table = mt6360_regulator_id_table,
 
 static struct i2c_driver pca9450_i2c_driver = {
        .driver = {
                .name = "nxp-pca9450",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = pca9450_of_match,
        },
        .probe_new = pca9450_i2c_probe,
 
 static struct platform_driver qcom_labibb_regulator_driver = {
        .driver = {
                .name = "qcom-lab-ibb-regulator",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = qcom_labibb_match,
        },
        .probe = qcom_labibb_regulator_probe,
 
 static struct platform_driver qcom_usb_vbus_regulator_driver = {
        .driver         = {
                .name   = "qcom-usb-vbus-regulator",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = qcom_usb_vbus_regulator_match,
        },
        .probe          = qcom_usb_vbus_regulator_probe,
 
 static struct i2c_driver attiny_regulator_driver = {
        .driver = {
                .name = "rpi_touchscreen_attiny",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = of_match_ptr(attiny_dt_ids),
        },
        .probe_new = attiny_i2c_probe,
 
 static struct i2c_driver rt4801_driver = {
        .driver = {
                .name = "rt4801",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = of_match_ptr(rt4801_of_id),
        },
        .probe_new = rt4801_probe,
 
 static struct i2c_driver rtmv20_driver = {
        .driver = {
                .name = "rtmv20",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = of_match_ptr(rtmv20_of_id),
                .pm = &rtmv20_pm,
        },
 
 static struct i2c_driver sy8827n_regulator_driver = {
        .driver = {
                .name = "sy8827n-regulator",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = sy8827n_dt_ids,
        },
        .probe_new = sy8827n_i2c_probe,
 
        .probe = ipq4019_regulator_probe,
        .driver = {
                .name = "vqmmc-ipq4019-regulator",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = of_match_ptr(regulator_ipq4019_of_match),
        },
 };