|
@@ -39,14 +39,11 @@
|
|
|
|
|
|
struct v4l2_i2c_driver_data {
|
|
struct v4l2_i2c_driver_data {
|
|
const char * const name;
|
|
const char * const name;
|
|
- int driverid;
|
|
|
|
int (*command)(struct i2c_client *client, unsigned int cmd, void *arg);
|
|
int (*command)(struct i2c_client *client, unsigned int cmd, void *arg);
|
|
int (*probe)(struct i2c_client *client, const struct i2c_device_id *id);
|
|
int (*probe)(struct i2c_client *client, const struct i2c_device_id *id);
|
|
int (*remove)(struct i2c_client *client);
|
|
int (*remove)(struct i2c_client *client);
|
|
int (*suspend)(struct i2c_client *client, pm_message_t state);
|
|
int (*suspend)(struct i2c_client *client, pm_message_t state);
|
|
int (*resume)(struct i2c_client *client);
|
|
int (*resume)(struct i2c_client *client);
|
|
- int (*legacy_probe)(struct i2c_adapter *adapter);
|
|
|
|
- int legacy_class;
|
|
|
|
const struct i2c_device_id *id_table;
|
|
const struct i2c_device_id *id_table;
|
|
};
|
|
};
|
|
|
|
|
|
@@ -59,7 +56,6 @@ static struct i2c_driver v4l2_i2c_driver;
|
|
static int __init v4l2_i2c_drv_init(void)
|
|
static int __init v4l2_i2c_drv_init(void)
|
|
{
|
|
{
|
|
v4l2_i2c_driver.driver.name = v4l2_i2c_data.name;
|
|
v4l2_i2c_driver.driver.name = v4l2_i2c_data.name;
|
|
- v4l2_i2c_driver.id = v4l2_i2c_data.driverid;
|
|
|
|
v4l2_i2c_driver.command = v4l2_i2c_data.command;
|
|
v4l2_i2c_driver.command = v4l2_i2c_data.command;
|
|
v4l2_i2c_driver.probe = v4l2_i2c_data.probe;
|
|
v4l2_i2c_driver.probe = v4l2_i2c_data.probe;
|
|
v4l2_i2c_driver.remove = v4l2_i2c_data.remove;
|
|
v4l2_i2c_driver.remove = v4l2_i2c_data.remove;
|