static struct i2c_driver max20411_i2c_driver = {
        .driver = {
                .name = "max20411",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = of_max20411_match_tbl,
        },
        .probe_new = max20411_probe,
 
 static struct platform_driver mt6357_regulator_driver = {
        .driver = {
                .name = "mt6357-regulator",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
        },
        .probe = mt6357_regulator_probe,
        .id_table = mt6357_platform_ids,
 
 static struct i2c_driver rt5739_driver = {
        .driver = {
                .name = "rt5739",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = rt5739_device_table,
        },
        .probe_new = rt5739_probe,
 
 static struct i2c_driver rt6190_driver = {
        .driver = {
                .name = "rt6190",
+               .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = rt6190_of_dev_table,
                .pm = pm_ptr(&rt6190_dev_pm),
        },