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>
Reviewed-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
 
                   .name = FDP_I2C_DRIVER_NAME,
                   .acpi_match_table = fdp_nci_i2c_acpi_match,
                  },
-       .probe_new = fdp_nci_i2c_probe,
+       .probe = fdp_nci_i2c_probe,
        .remove = fdp_nci_i2c_remove,
 };
 module_i2c_driver(fdp_nci_i2c_driver);
 
        .driver = {
                .name = MICROREAD_I2C_DRIVER_NAME,
        },
-       .probe_new      = microread_i2c_probe,
+       .probe          = microread_i2c_probe,
        .remove         = microread_i2c_remove,
        .id_table       = microread_i2c_id,
 };
 
 MODULE_DEVICE_TABLE(i2c, nfcmrvl_i2c_id_table);
 
 static struct i2c_driver nfcmrvl_i2c_driver = {
-       .probe_new = nfcmrvl_i2c_probe,
+       .probe = nfcmrvl_i2c_probe,
        .id_table = nfcmrvl_i2c_id_table,
        .remove = nfcmrvl_i2c_remove,
        .driver = {
 
                   .acpi_match_table = ACPI_PTR(acpi_id),
                   .of_match_table = of_nxp_nci_i2c_match,
                  },
-       .probe_new = nxp_nci_i2c_probe,
+       .probe = nxp_nci_i2c_probe,
        .id_table = nxp_nci_i2c_id_table,
        .remove = nxp_nci_i2c_remove,
 };
 
                   .name = PN533_I2C_DRIVER_NAME,
                   .of_match_table = of_match_ptr(of_pn533_i2c_match),
                  },
-       .probe_new = pn533_i2c_probe,
+       .probe = pn533_i2c_probe,
        .id_table = pn533_i2c_id_table,
        .remove = pn533_i2c_remove,
 };
 
                   .of_match_table = of_match_ptr(of_pn544_i2c_match),
                   .acpi_match_table = ACPI_PTR(pn544_hci_i2c_acpi_match),
                  },
-       .probe_new = pn544_hci_i2c_probe,
+       .probe = pn544_hci_i2c_probe,
        .id_table = pn544_hci_i2c_id_table,
        .remove = pn544_hci_i2c_remove,
 };
 
                .name = S3FWRN5_I2C_DRIVER_NAME,
                .of_match_table = of_match_ptr(of_s3fwrn5_i2c_match),
        },
-       .probe_new = s3fwrn5_i2c_probe,
+       .probe = s3fwrn5_i2c_probe,
        .remove = s3fwrn5_i2c_remove,
        .id_table = s3fwrn5_i2c_id_table,
 };
 
                .of_match_table = of_match_ptr(of_st_nci_i2c_match),
                .acpi_match_table = ACPI_PTR(st_nci_i2c_acpi_match),
        },
-       .probe_new = st_nci_i2c_probe,
+       .probe = st_nci_i2c_probe,
        .id_table = st_nci_i2c_id_table,
        .remove = st_nci_i2c_remove,
 };
 
                .of_match_table = of_match_ptr(of_st21nfca_i2c_match),
                .acpi_match_table = ACPI_PTR(st21nfca_hci_i2c_acpi_match),
        },
-       .probe_new = st21nfca_hci_i2c_probe,
+       .probe = st21nfca_hci_i2c_probe,
        .id_table = st21nfca_hci_i2c_id_table,
        .remove = st21nfca_hci_i2c_remove,
 };