mirror of
https://github.com/torvalds/linux.git
synced 2024-12-02 00:51:44 +00:00
0f9be03452
Move from the deprecated i2c_new_probed_device() to the new i2c_new_scanned_device(). Make use of the new ERRPTR if suitable. Change the legacy function to simply return void because the retval was never used anywhere. Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> Acked-by: Sean Young <sean@mess.org> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
21 lines
524 B
C
21 lines
524 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
I2C functions
|
|
Copyright (C) 2003-2004 Kevin Thayer <nufan_wfk at yahoo.com>
|
|
Copyright (C) 2005-2007 Hans Verkuil <hverkuil@xs4all.nl>
|
|
|
|
*/
|
|
|
|
#ifndef IVTV_I2C_H
|
|
#define IVTV_I2C_H
|
|
|
|
void ivtv_i2c_new_ir_legacy(struct ivtv *itv);
|
|
int ivtv_i2c_register(struct ivtv *itv, unsigned idx);
|
|
struct v4l2_subdev *ivtv_find_hw(struct ivtv *itv, u32 hw);
|
|
|
|
/* init + register i2c adapter */
|
|
int init_ivtv_i2c(struct ivtv *itv);
|
|
void exit_ivtv_i2c(struct ivtv *itv);
|
|
|
|
#endif
|