regulator: Switch i2c drivers back to use .probe()
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Fri, 5 May 2023 22:02:18 +0000 (00:02 +0200)
committerMark Brown <broonie@kernel.org>
Sun, 7 May 2023 23:50:11 +0000 (08:50 +0900)
After commit b8a1a4cd5a98 ("i2c: Provide a temporary .probe_new()
call-back type"), all drivers being converted to .probe_new() and then
03c835f498b5 ("i2c: Switch .probe() to not take an id parameter") convert
back to (the new) .probe() to be able to eventually drop .probe_new() from
struct i2c_driver.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de
Link: https://lore.kernel.org/r/20230505220218.1239542-1-u.kleine-koenig@pengutronix.de
Signed-off-by: Mark Brown <broonie@kernel.org
56 files changed:
drivers/regulator/88pg86x.c
drivers/regulator/act8865-regulator.c
drivers/regulator/ad5398.c
drivers/regulator/da9121-regulator.c
drivers/regulator/da9210-regulator.c
drivers/regulator/da9211-regulator.c
drivers/regulator/fan53555.c
drivers/regulator/fan53880.c
drivers/regulator/isl6271a-regulator.c
drivers/regulator/isl9305.c
drivers/regulator/lp3971.c
drivers/regulator/lp3972.c
drivers/regulator/lp872x.c
drivers/regulator/lp8755.c
drivers/regulator/ltc3589.c
drivers/regulator/ltc3676.c
drivers/regulator/max1586.c
drivers/regulator/max20086-regulator.c
drivers/regulator/max20411-regulator.c
drivers/regulator/max77826-regulator.c
drivers/regulator/max8649.c
drivers/regulator/max8660.c
drivers/regulator/max8893.c
drivers/regulator/max8952.c
drivers/regulator/max8973-regulator.c
drivers/regulator/mcp16502.c
drivers/regulator/mp5416.c
drivers/regulator/mp8859.c
drivers/regulator/mp886x.c
drivers/regulator/mpq7920.c
drivers/regulator/mt6311-regulator.c
drivers/regulator/pca9450-regulator.c
drivers/regulator/pf8x00-regulator.c
drivers/regulator/pfuze100-regulator.c
drivers/regulator/pv88060-regulator.c
drivers/regulator/pv88080-regulator.c
drivers/regulator/pv88090-regulator.c
drivers/regulator/rpi-panel-attiny-regulator.c
drivers/regulator/rt4801-regulator.c
drivers/regulator/rt5190a-regulator.c
drivers/regulator/rt5759-regulator.c
drivers/regulator/rt6160-regulator.c
drivers/regulator/rt6190-regulator.c
drivers/regulator/rt6245-regulator.c
drivers/regulator/rtmv20-regulator.c
drivers/regulator/rtq2134-regulator.c
drivers/regulator/rtq6752-regulator.c
drivers/regulator/slg51000-regulator.c
drivers/regulator/sy8106a-regulator.c
drivers/regulator/sy8824x.c
drivers/regulator/sy8827n.c
drivers/regulator/tps51632-regulator.c
drivers/regulator/tps62360-regulator.c
drivers/regulator/tps6286x-regulator.c
drivers/regulator/tps65023-regulator.c
drivers/regulator/tps65132-regulator.c

index 74275b681f460b7cc797dc1c85422bace914e9ca..e6598e74ec94e4a7b25edbed233ccc2090f7bed3 100644 (file)
@@ -104,7 +104,7 @@ static struct i2c_driver pg86x_regulator_driver = {
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = of_match_ptr(pg86x_dt_ids),
        },
-       .probe_new = pg86x_i2c_probe,
+       .probe = pg86x_i2c_probe,
        .id_table = pg86x_i2c_id,
 };
 
index 5c409ff4aa991bb65b494f293297b92f6ca4f2b3..a504b01dd99c8ffe1735bcf8087c54e85cfd7d03 100644 (file)
@@ -791,7 +791,7 @@ static struct i2c_driver act8865_pmic_driver = {
                .name   = "act8865",
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
        },
-       .probe_new      = act8865_pmic_probe,
+       .probe          = act8865_pmic_probe,
        .id_table       = act8865_ids,
 };
 
index c228cf6956d10aaffd0ded4cddaa659ffa347b83..40f7dba42b5ad7c95a3e2643b3ad6e076cf2cbb4 100644 (file)
@@ -254,7 +254,7 @@ static int ad5398_probe(struct i2c_client *client)
 }
 
 static struct i2c_driver ad5398_driver = {
-       .probe_new = ad5398_probe,
+       .probe = ad5398_probe,
        .driver         = {
                .name   = "ad5398",
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
index 6ce0fdc18b9c1516b8aee94f3eab2d53c171f0c5..122124944749e345f0edf665e5cb57bed6fa9069 100644 (file)
@@ -1197,7 +1197,7 @@ static struct i2c_driver da9121_regulator_driver = {
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = of_match_ptr(da9121_dt_ids),
        },
-       .probe_new = da9121_i2c_probe,
+       .probe = da9121_i2c_probe,
        .remove = da9121_i2c_remove,
        .id_table = da9121_i2c_id,
 };
index 4332a3b8a6723cda46dc2e7527b864abebfefcd1..252f74ab9bc01c8a056ae8dae3b1856ba22a3c5d 100644 (file)
@@ -224,7 +224,7 @@ static struct i2c_driver da9210_regulator_driver = {
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = of_match_ptr(da9210_dt_ids),
        },
-       .probe_new = da9210_i2c_probe,
+       .probe = da9210_i2c_probe,
        .id_table = da9210_i2c_id,
 };
 
index a2b4f6f1e34b826bd14df7d6a71401a02a692ff7..af383ff0fe5733a8f3d5d3c57204fdbacb06bd27 100644 (file)
@@ -555,7 +555,7 @@ static struct i2c_driver da9211_regulator_driver = {
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = of_match_ptr(da9211_dt_ids),
        },
-       .probe_new = da9211_i2c_probe,
+       .probe = da9211_i2c_probe,
        .id_table = da9211_i2c_id,
 };
 
index 130f3dbe98404aa61828841e0c5f3ee33c6be2df..289c06e09f47bdc7bb10146947c87008b64ec0db 100644 (file)
@@ -775,7 +775,7 @@ static struct i2c_driver fan53555_regulator_driver = {
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = of_match_ptr(fan53555_dt_ids),
        },
-       .probe_new = fan53555_regulator_probe,
+       .probe = fan53555_regulator_probe,
        .id_table = fan53555_id,
 };
 
index a3bebdee570ec6961f95504ecfda5d10071b0795..6cb5656845f9e8dad92f9dd784bdf78faa8fa247 100644 (file)
@@ -175,7 +175,7 @@ static struct i2c_driver fan53880_regulator_driver = {
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = fan53880_dt_ids,
        },
-       .probe_new = fan53880_i2c_probe,
+       .probe = fan53880_i2c_probe,
        .id_table = fan53880_i2c_id,
 };
 module_i2c_driver(fan53880_regulator_driver);
index 3c37c4de1d82105aa8c1cb3607a8c506e9294235..69b4afe95e66bf2bc5725baad3d8e8f82667245e 100644 (file)
@@ -149,7 +149,7 @@ static struct i2c_driver isl6271a_i2c_driver = {
                .name = "isl6271a",
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
        },
-       .probe_new = isl6271a_probe,
+       .probe = isl6271a_probe,
        .id_table = isl6271a_id,
 };
 
index 90bc8d054304a3adb30f21865314d75d7b4d6578..0f7560093091a18a93330c903413e55e97c375dd 100644 (file)
@@ -198,7 +198,7 @@ static struct i2c_driver isl9305_regulator_driver = {
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = of_match_ptr(isl9305_dt_ids),
        },
-       .probe_new = isl9305_i2c_probe,
+       .probe = isl9305_i2c_probe,
        .id_table = isl9305_i2c_id,
 };
 
index e06f2a092b8935e49c701fe6f3b6d163d27bef37..e1b5c45f97f41b0b59ef08634a86e3b13b558961 100644 (file)
@@ -449,7 +449,7 @@ static struct i2c_driver lp3971_i2c_driver = {
                .name = "LP3971",
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
        },
-       .probe_new = lp3971_i2c_probe,
+       .probe = lp3971_i2c_probe,
        .id_table = lp3971_i2c_id,
 };
 
index edacca8e14af6b29a886dece71343d9dc8707eda..7bd6f05edd8d914f97d29ffa68f3674eb1560abe 100644 (file)
@@ -547,7 +547,7 @@ static struct i2c_driver lp3972_i2c_driver = {
                .name = "lp3972",
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
        },
-       .probe_new = lp3972_i2c_probe,
+       .probe = lp3972_i2c_probe,
        .id_table = lp3972_i2c_id,
 };
 
index a8b0969d4f31e84f74810813b41c1f96280ebd69..63aa227b18132b0a5670b51d425dd9dfa9dfed10 100644 (file)
@@ -947,7 +947,7 @@ static struct i2c_driver lp872x_driver = {
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = of_match_ptr(lp872x_dt_ids),
        },
-       .probe_new = lp872x_probe,
+       .probe = lp872x_probe,
        .id_table = lp872x_ids,
 };
 
index 37b51b94fb5a4bd9f67f8bfb65a0ea46edd912ec..4bc310f972edb431f3f06cfade72af61c3bdfc15 100644 (file)
@@ -442,7 +442,7 @@ static struct i2c_driver lp8755_i2c_driver = {
                   .name = LP8755_NAME,
                   .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                   },
-       .probe_new = lp8755_probe,
+       .probe = lp8755_probe,
        .remove = lp8755_remove,
        .id_table = lp8755_id,
 };
index 359b534d8c70f762e2e9170b2f2f6efb21351f0a..149ac281c1f9dbc6e87322a4cebe88822724c710 100644 (file)
@@ -477,7 +477,7 @@ static struct i2c_driver ltc3589_driver = {
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = of_match_ptr(ltc3589_of_match),
        },
-       .probe_new = ltc3589_probe,
+       .probe = ltc3589_probe,
        .id_table = ltc3589_i2c_id,
 };
 module_i2c_driver(ltc3589_driver);
index a28e6c3460f167e3f6a8c57b321bfd6c9caed110..2a225c722564c8b63a73db825fdae8cbe392b109 100644 (file)
@@ -374,7 +374,7 @@ static struct i2c_driver ltc3676_driver = {
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = of_match_ptr(ltc3676_of_match),
        },
-       .probe_new = ltc3676_regulator_probe,
+       .probe = ltc3676_regulator_probe,
        .id_table = ltc3676_i2c_id,
 };
 module_i2c_driver(ltc3676_driver);
index 5d8852b2c168c1112ed78eb4f6ad575928509353..90aa5b723c034b7aa05d96538fbbe639d28206fe 100644 (file)
@@ -289,7 +289,7 @@ static const struct i2c_device_id max1586_id[] = {
 MODULE_DEVICE_TABLE(i2c, max1586_id);
 
 static struct i2c_driver max1586_pmic_driver = {
-       .probe_new = max1586_pmic_probe,
+       .probe = max1586_pmic_probe,
        .driver         = {
                .name   = "max1586",
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
index ace1d582a191c88169c6ec0c90883c11c43d83bf..fad31f5f435e147dd87b5e37e4aaa9da68e25fe3 100644 (file)
@@ -323,7 +323,7 @@ static struct i2c_driver max20086_regulator_driver = {
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = of_match_ptr(max20086_dt_ids),
        },
-       .probe_new = max20086_i2c_probe,
+       .probe = max20086_i2c_probe,
        .id_table = max20086_i2c_id,
 };
 
index be8169b86a89301fb133186e7c3ff09527a21ecc..8c09dc71b16db5a92425b97e0e777de4da454f75 100644 (file)
@@ -156,7 +156,7 @@ static struct i2c_driver max20411_i2c_driver = {
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = of_max20411_match_tbl,
        },
-       .probe_new = max20411_probe,
+       .probe = max20411_probe,
        .id_table = max20411_id,
 };
 module_i2c_driver(max20411_i2c_driver);
index ea5d4b18b464dd4b7c41e4ead9356b8b22647b8d..3855f5e686d8acd5bc568b8ed2cbe0b402ab9d0d 100644 (file)
@@ -292,7 +292,7 @@ static struct i2c_driver max77826_regulator_driver = {
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = of_match_ptr(max77826_of_match),
        },
-       .probe_new = max77826_i2c_probe,
+       .probe = max77826_i2c_probe,
        .id_table = max77826_id,
 };
 module_i2c_driver(max77826_regulator_driver);
index a517fb4e3669b184716338ecbd3a9e0c9211f2e6..24e1dfba78c8b56c27f3050a3a3d5506ceeaf30e 100644 (file)
@@ -246,7 +246,7 @@ static const struct i2c_device_id max8649_id[] = {
 MODULE_DEVICE_TABLE(i2c, max8649_id);
 
 static struct i2c_driver max8649_driver = {
-       .probe_new      = max8649_regulator_probe,
+       .probe          = max8649_regulator_probe,
        .driver         = {
                .name   = "max8649",
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
index d6b89f07ae9ebab56ad6671b1819ab2742024f6a..ede17099b727499713989f1270f2d5284981e8fd 100644 (file)
@@ -503,7 +503,7 @@ static const struct i2c_device_id max8660_id[] = {
 MODULE_DEVICE_TABLE(i2c, max8660_id);
 
 static struct i2c_driver max8660_driver = {
-       .probe_new = max8660_probe,
+       .probe = max8660_probe,
        .driver         = {
                .name   = "max8660",
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
index 10ffd77828b784843124377e48fb4c02936cf849..cb0e72948dd41c81e5c64f6e1d639ce0e0e43484 100644 (file)
@@ -168,7 +168,7 @@ static const struct i2c_device_id max8893_ids[] = {
 MODULE_DEVICE_TABLE(i2c, max8893_ids);
 
 static struct i2c_driver max8893_driver = {
-       .probe_new      = max8893_probe_new,
+       .probe          = max8893_probe_new,
        .driver         = {
                .name   = "max8893",
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
index 8ad8fe7fd263e85f89754a437287d5e526270103..0b0b841d214afae28b79bd71e795684d5f486a9b 100644 (file)
@@ -313,7 +313,7 @@ static const struct i2c_device_id max8952_ids[] = {
 MODULE_DEVICE_TABLE(i2c, max8952_ids);
 
 static struct i2c_driver max8952_pmic_driver = {
-       .probe_new      = max8952_pmic_probe,
+       .probe          = max8952_pmic_probe,
        .driver         = {
                .name   = "max8952",
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
index a991a884a31bbfafe22fd8c826aa74f91835acd0..8d5193207552360eeadea34bb050402ddb4f6bcb 100644 (file)
@@ -807,7 +807,7 @@ static struct i2c_driver max8973_i2c_driver = {
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = of_max8973_match_tbl,
        },
-       .probe_new = max8973_probe,
+       .probe = max8973_probe,
        .id_table = max8973_id,
 };
 
index 3a6d795569423b85239bdf53ab1660d25f562555..6c6f5a21362bec1414d9da7f45dbbf41a8102b42 100644 (file)
@@ -584,7 +584,7 @@ static const struct i2c_device_id mcp16502_i2c_id[] = {
 MODULE_DEVICE_TABLE(i2c, mcp16502_i2c_id);
 
 static struct i2c_driver mcp16502_drv = {
-       .probe_new      = mcp16502_probe,
+       .probe          = mcp16502_probe,
        .driver         = {
                .name   = "mcp16502-regulator",
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
index 91e9019430b864e1f23ca8a3f7ebc085d85a6c14..3886b252fbe7bad8c4713d094bd5fa30f8c478fc 100644 (file)
@@ -240,7 +240,7 @@ static struct i2c_driver mp5416_regulator_driver = {
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = of_match_ptr(mp5416_of_match),
        },
-       .probe_new = mp5416_i2c_probe,
+       .probe = mp5416_i2c_probe,
        .id_table = mp5416_id,
 };
 module_i2c_driver(mp5416_regulator_driver);
index b968a682f38a0c9c35b58885ed565f1cbc220de0..b820bd6043e53bf217f0d60f2d57f0355319315b 100644 (file)
@@ -147,7 +147,7 @@ static struct i2c_driver mp8859_regulator_driver = {
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = of_match_ptr(mp8859_dt_id),
        },
-       .probe_new = mp8859_i2c_probe,
+       .probe = mp8859_i2c_probe,
        .id_table = mp8859_i2c_id,
 };
 
index 250c27e462f15a6a32e9cd718016bd5802c70649..ede1b1e58002614bdb3996af5362d36936ae02fe 100644 (file)
@@ -365,7 +365,7 @@ static struct i2c_driver mp886x_regulator_driver = {
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = mp886x_dt_ids,
        },
-       .probe_new = mp886x_i2c_probe,
+       .probe = mp886x_i2c_probe,
        .id_table = mp886x_id,
 };
 module_i2c_driver(mp886x_regulator_driver);
index 544d41b885144681b167b5c33770a9c6360abf96..bf677c535edc4b3dfb8bc4ed8592fdc81507c9dd 100644 (file)
@@ -321,7 +321,7 @@ static struct i2c_driver mpq7920_regulator_driver = {
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = of_match_ptr(mpq7920_of_match),
        },
-       .probe_new = mpq7920_i2c_probe,
+       .probe = mpq7920_i2c_probe,
        .id_table = mpq7920_id,
 };
 module_i2c_driver(mpq7920_regulator_driver);
index a9f0c9f725d42f5e855343b10990634e4a488f2f..b0771770cc2652a8a6aa10b5cbb04022798e475c 100644 (file)
@@ -154,7 +154,7 @@ static struct i2c_driver mt6311_regulator_driver = {
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = of_match_ptr(mt6311_dt_ids),
        },
-       .probe_new = mt6311_i2c_probe,
+       .probe = mt6311_i2c_probe,
        .id_table = mt6311_i2c_id,
 };
 
index 87a746dcb5169759f5413dfd8fe150933e267c3e..9f2e33a5a69e529707cfda32f10419554fbcdd85 100644 (file)
@@ -875,7 +875,7 @@ static struct i2c_driver pca9450_i2c_driver = {
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = pca9450_of_match,
        },
-       .probe_new = pca9450_i2c_probe,
+       .probe = pca9450_i2c_probe,
 };
 
 module_i2c_driver(pca9450_i2c_driver);
index 99a15c3be39656b3278efe741273bf6f90394a28..b0781d9a1058f89dd531d3f22d9ed4fc525257f0 100644 (file)
@@ -610,7 +610,7 @@ static struct i2c_driver pf8x00_regulator_driver = {
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = pf8x00_dt_ids,
        },
-       .probe_new = pf8x00_i2c_probe,
+       .probe = pf8x00_i2c_probe,
 };
 module_i2c_driver(pf8x00_regulator_driver);
 
index a9fcf6a41494a640357e31a09055ff3fc3358334..8d7e6c3233243f0d414a08db93b43ac43f9fa052 100644 (file)
@@ -848,7 +848,7 @@ static struct i2c_driver pfuze_driver = {
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = pfuze_dt_ids,
        },
-       .probe_new = pfuze100_regulator_probe,
+       .probe = pfuze100_regulator_probe,
 };
 module_i2c_driver(pfuze_driver);
 
index f170e0dd18198562c0e00a71ccf195a2ffc704e0..aa90360fa046af1abce2b9d66327cfe2f01e3f89 100644 (file)
@@ -379,7 +379,7 @@ static struct i2c_driver pv88060_regulator_driver = {
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = of_match_ptr(pv88060_dt_ids),
        },
-       .probe_new = pv88060_i2c_probe,
+       .probe = pv88060_i2c_probe,
        .id_table = pv88060_i2c_id,
 };
 
index 133b89d5215c0d42d0be7fe22957629ba3c65682..7ab3e4a9bd28ccf441fe5756ada9cffac7dffe46 100644 (file)
@@ -560,7 +560,7 @@ static struct i2c_driver pv88080_regulator_driver = {
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = of_match_ptr(pv88080_dt_ids),
        },
-       .probe_new = pv88080_i2c_probe,
+       .probe = pv88080_i2c_probe,
        .id_table = pv88080_i2c_id,
 };
 
index 1bc33bc1099288caa595cc3e99aa748b0f73905b..f4acde4d56c81c2b4444480f6fe01437f252cca3 100644 (file)
@@ -400,7 +400,7 @@ static struct i2c_driver pv88090_regulator_driver = {
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = of_match_ptr(pv88090_dt_ids),
        },
-       .probe_new = pv88090_i2c_probe,
+       .probe = pv88090_i2c_probe,
        .id_table = pv88090_i2c_id,
 };
 
index 9afe961a87f1eb864e83fcc84130721378c627fc..e9719a378a0bc10d9333b8f9674b3496ce2250d5 100644 (file)
@@ -399,7 +399,7 @@ static struct i2c_driver attiny_regulator_driver = {
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = of_match_ptr(attiny_dt_ids),
        },
-       .probe_new = attiny_i2c_probe,
+       .probe = attiny_i2c_probe,
        .remove = attiny_i2c_remove,
 };
 
index be3dc981195cfb657a897ff29145e405161ecc14..4955bfea4e844ce41dcaaa24a461f1f8bb081a33 100644 (file)
@@ -242,7 +242,7 @@ static struct i2c_driver rt4801_driver = {
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = of_match_ptr(rt4801_of_id),
        },
-       .probe_new = rt4801_probe,
+       .probe = rt4801_probe,
 };
 module_i2c_driver(rt4801_driver);
 
index f6c12f87fb8d47103955fb18edcd4160d428170f..a53ed523b5d7d5f02c1d303eaf9ef684af9be514 100644 (file)
@@ -508,7 +508,7 @@ static struct i2c_driver rt5190a_driver = {
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = rt5190a_device_table,
        },
-       .probe_new = rt5190a_probe,
+       .probe = rt5190a_probe,
 };
 module_i2c_driver(rt5190a_driver);
 
index d5a42ad21a9a4797768a3031b68722e0fbc12c02..90555a9ef1b0c2845e1eaf1b3bcf44822880c7fa 100644 (file)
@@ -362,7 +362,7 @@ static struct i2c_driver rt5759_driver = {
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = of_match_ptr(rt5759_device_table),
        },
-       .probe_new = rt5759_probe,
+       .probe = rt5759_probe,
 };
 module_i2c_driver(rt5759_driver);
 
index 8990dac234605eb45019510ae53fd1967845b8b1..e2a0eee95c617694d2ea1db2e12c599797285c2e 100644 (file)
@@ -311,7 +311,7 @@ static struct i2c_driver rt6160_driver = {
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = rt6160_of_match_table,
        },
-       .probe_new = rt6160_probe,
+       .probe = rt6160_probe,
 };
 module_i2c_driver(rt6160_driver);
 
index ca91a1f6d3c817e8b8e84fd345d8560420988136..3883440295edf8acbe91e2b89d77841ad2c2c302 100644 (file)
@@ -487,7 +487,7 @@ static struct i2c_driver rt6190_driver = {
                .of_match_table = rt6190_of_dev_table,
                .pm = pm_ptr(&rt6190_dev_pm),
        },
-       .probe_new = rt6190_probe,
+       .probe = rt6190_probe,
 };
 module_i2c_driver(rt6190_driver);
 
index 8721d11c796422019a9be1e1c6f508e480a63888..1843ecec19229f09951be14d89e5b8b8f71da845 100644 (file)
@@ -246,7 +246,7 @@ static struct i2c_driver rt6245_driver = {
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = rt6245_of_match_table,
        },
-       .probe_new = rt6245_probe,
+       .probe = rt6245_probe,
 };
 module_i2c_driver(rt6245_driver);
 
index 7cbb812477e181e184f3934342ef404e05d94ff2..dfd1522637e433a301ee80d697d68ccc675326da 100644 (file)
@@ -429,7 +429,7 @@ static struct i2c_driver rtmv20_driver = {
                .of_match_table = of_match_ptr(rtmv20_of_id),
                .pm = &rtmv20_pm,
        },
-       .probe_new = rtmv20_probe,
+       .probe = rtmv20_probe,
 };
 module_i2c_driver(rtmv20_driver);
 
index ee1577dc3cfc0c8dc58932016b402c0914d2aa41..b7372cb2b97d7e1148e158fdbd84ac55764b2a50 100644 (file)
@@ -366,7 +366,7 @@ static struct i2c_driver rtq2134_driver = {
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = rtq2134_device_tables,
        },
-       .probe_new = rtq2134_probe,
+       .probe = rtq2134_probe,
 };
 module_i2c_driver(rtq2134_driver);
 
index 8559a266a7eb6e96c7fd4879bd176c58d413ec0c..8176e5ab068359d9094a4bcc511e18cd7e6764c1 100644 (file)
@@ -281,7 +281,7 @@ static struct i2c_driver rtq6752_driver = {
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = rtq6752_device_table,
        },
-       .probe_new = rtq6752_probe,
+       .probe = rtq6752_probe,
 };
 module_i2c_driver(rtq6752_driver);
 
index 559ae031010f23ae75eea00f90f9c142a0251625..59aa16825d8a607fed750e19baa7f5eeb37c7072 100644 (file)
@@ -507,7 +507,7 @@ static struct i2c_driver slg51000_regulator_driver = {
                .name = "slg51000-regulator",
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
        },
-       .probe_new = slg51000_i2c_probe,
+       .probe = slg51000_i2c_probe,
        .id_table = slg51000_i2c_id,
 };
 
index e3c753986309ce729152f633330a2c8c8355a315..1bcfdd6dcfc164d071077bddf03668dabf63b991 100644 (file)
@@ -141,7 +141,7 @@ static struct i2c_driver sy8106a_regulator_driver = {
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = sy8106a_i2c_of_match,
        },
-       .probe_new = sy8106a_i2c_probe,
+       .probe = sy8106a_i2c_probe,
        .id_table = sy8106a_i2c_id,
 };
 
index c327ad69f676b213c719f52ae9c6eacddeb587fb..d0703105c43993b840356fd70b48b26c459c9261 100644 (file)
@@ -236,7 +236,7 @@ static struct i2c_driver sy8824_regulator_driver = {
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = sy8824_dt_ids,
        },
-       .probe_new = sy8824_i2c_probe,
+       .probe = sy8824_i2c_probe,
        .id_table = sy8824_id,
 };
 module_i2c_driver(sy8824_regulator_driver);
index 99ca08cc3a6aef6c6ad9eab1ec13baf08ca9c846..433959b43549137312632793efd784ff08ce1f69 100644 (file)
@@ -190,7 +190,7 @@ static struct i2c_driver sy8827n_regulator_driver = {
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = sy8827n_dt_ids,
        },
-       .probe_new = sy8827n_i2c_probe,
+       .probe = sy8827n_i2c_probe,
        .id_table = sy8827n_id,
 };
 module_i2c_driver(sy8827n_regulator_driver);
index 9bd4e72914ed426d5ccb162e052d04fc58bb10df..d8a856c1587a36aeb147da79e5d6e72d008dff35 100644 (file)
@@ -354,7 +354,7 @@ static struct i2c_driver tps51632_i2c_driver = {
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = of_match_ptr(tps51632_of_match),
        },
-       .probe_new = tps51632_probe,
+       .probe = tps51632_probe,
        .id_table = tps51632_id,
 };
 
index 65cc08d1a67d644d34cc0f39d5246995aa9f9a1f..32e1a05a57fd6e1e82e35fd9a43706b432cba4e9 100644 (file)
@@ -491,7 +491,7 @@ static struct i2c_driver tps62360_i2c_driver = {
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = of_match_ptr(tps62360_of_match),
        },
-       .probe_new = tps62360_probe,
+       .probe = tps62360_probe,
        .shutdown = tps62360_shutdown,
        .id_table = tps62360_id,
 };
index f92e7649d0a064048aa2605b41a6f9e81f20220e..b1c4b5120745cc74b84c53432c4337a5a6765e39 100644 (file)
@@ -150,7 +150,7 @@ static struct i2c_driver tps6286x_regulator_driver = {
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = of_match_ptr(tps6286x_dt_ids),
        },
-       .probe_new = tps6286x_i2c_probe,
+       .probe = tps6286x_i2c_probe,
        .id_table = tps6286x_i2c_id,
 };
 
index d87cac63f346a8af13b47c3e18ec005a8c414a06..d5757fd9a65bb1d0ecc1e398482b47288e520263 100644 (file)
@@ -337,7 +337,7 @@ static struct i2c_driver tps_65023_i2c_driver = {
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
                .of_match_table = of_match_ptr(tps65023_of_match),
        },
-       .probe_new = tps_65023_probe,
+       .probe = tps_65023_probe,
        .id_table = tps_65023_id,
 };
 
index d4b02ee791d1386d0dce1ac2873e7cf87f28a29c..a06f5f2d79329d615807fcc51064705accfdcc63 100644 (file)
@@ -272,7 +272,7 @@ static struct i2c_driver tps65132_i2c_driver = {
                .name = "tps65132",
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
        },
-       .probe_new = tps65132_probe,
+       .probe = tps65132_probe,
        .id_table = tps65132_id,
 };