Message ID | 20230627064522.593332-1-u.kleine-koenig@pengutronix.de |
---|---|
State | New |
Headers | show |
Series | [v2] i2c: Update documentation to use .probe() again | expand |
On Tue, Jun 27, 2023 at 08:45:22AM +0200, Uwe Kleine-König wrote: > Since commit 03c835f498b5 ("i2c: Switch .probe() to not take an id > parameter") .probe() is the recommended callback to implement (again). > Reflect this in the documentation and don't mention .probe_new() any > more. > > Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Applied to for-current, thanks!
diff --git a/Documentation/i2c/writing-clients.rst b/Documentation/i2c/writing-clients.rst index b7d3ae7458f8..41ddc10f1ac7 100644 --- a/Documentation/i2c/writing-clients.rst +++ b/Documentation/i2c/writing-clients.rst @@ -46,7 +46,7 @@ driver model device node, and its I2C address. }, .id_table = foo_idtable, - .probe_new = foo_probe, + .probe = foo_probe, .remove = foo_remove, /* if device autodetection is needed: */ .class = I2C_CLASS_SOMETHING,
Since commit 03c835f498b5 ("i2c: Switch .probe() to not take an id parameter") .probe() is the recommended callback to implement (again). Reflect this in the documentation and don't mention .probe_new() any more. Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> --- Hello, changes since (implicit) v1 sent a moment ago: - Fix whitespace. My editor seems to be configured to expand tabs to spaces in rst files, but that's inconsitent with the tab style used in that file. Best regards Uwe Documentation/i2c/writing-clients.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) base-commit: 6995e2de6891c724bfeb2db33d7b87775f913ad1