1 /* dvb-usb-i2c.c is part of the DVB USB library.
3 * Copyright (C) 2004-6 Patrick Boettcher (patrick.boettcher@desy.de)
4 * see dvb-usb-init.c for copyright information.
6 * This file contains functions for (de-)initializing an I2C adapter.
8 #include "dvb-usb-common.h"
10 int dvb_usb_i2c_init(struct dvb_usb_device
*d
)
14 if (!(d
->props
.caps
& DVB_USB_IS_AN_I2C_ADAPTER
))
17 if (d
->props
.i2c_algo
== NULL
) {
18 err("no i2c algorithm specified");
22 strlcpy(d
->i2c_adap
.name
, d
->desc
->name
, sizeof(d
->i2c_adap
.name
));
23 d
->i2c_adap
.class = I2C_CLASS_TV_DIGITAL
,
24 d
->i2c_adap
.algo
= d
->props
.i2c_algo
;
25 d
->i2c_adap
.algo_data
= NULL
;
26 d
->i2c_adap
.dev
.parent
= &d
->udev
->dev
;
28 i2c_set_adapdata(&d
->i2c_adap
, d
);
30 if ((ret
= i2c_add_adapter(&d
->i2c_adap
)) < 0)
31 err("could not add i2c adapter");
33 d
->state
|= DVB_USB_STATE_I2C
;
38 int dvb_usb_i2c_exit(struct dvb_usb_device
*d
)
40 if (d
->state
& DVB_USB_STATE_I2C
)
41 i2c_del_adapter(&d
->i2c_adap
);
42 d
->state
&= ~DVB_USB_STATE_I2C
;