Commit bc5a3e44 authored by Wolfram Sang's avatar Wolfram Sang Committed by Wolfram Sang

Documentation: media: convert to use i2c_new_client_device()

Move away from the deprecated API and advertise the new one.
Signed-off-by: default avatarWolfram Sang <wsa+renesas@sang-engineering.com>
Reviewed-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Signed-off-by: default avatarWolfram Sang <wsa@kernel.org>
parent 9e1b93b9
...@@ -451,7 +451,7 @@ The bridge driver also has some helper functions it can use: ...@@ -451,7 +451,7 @@ The bridge driver also has some helper functions it can use:
"module_foo", "chipid", 0x36, NULL); "module_foo", "chipid", 0x36, NULL);
This loads the given module (can be ``NULL`` if no module needs to be loaded) This loads the given module (can be ``NULL`` if no module needs to be loaded)
and calls :c:func:`i2c_new_device` with the given ``i2c_adapter`` and and calls :c:func:`i2c_new_client_device` with the given ``i2c_adapter`` and
chip/address arguments. If all goes well, then it registers the subdev with chip/address arguments. If all goes well, then it registers the subdev with
the v4l2_device. the v4l2_device.
......
...@@ -27,7 +27,7 @@ nitpick_ignore = [ ...@@ -27,7 +27,7 @@ nitpick_ignore = [
("c:func", "copy_to_user"), ("c:func", "copy_to_user"),
("c:func", "determine_valid_ioctls"), ("c:func", "determine_valid_ioctls"),
("c:func", "ERR_PTR"), ("c:func", "ERR_PTR"),
("c:func", "i2c_new_device"), ("c:func", "i2c_new_client_device"),
("c:func", "ioctl"), ("c:func", "ioctl"),
("c:func", "IS_ERR"), ("c:func", "IS_ERR"),
("c:func", "KERNEL_VERSION"), ("c:func", "KERNEL_VERSION"),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment