Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 219127
b: refs/heads/master
c: 9f490cd
h: refs/heads/master
i:
  219125: 3602204
  219123: 2962eaf
  219119: a586daa
v: v3
  • Loading branch information
Hans Verkuil authored and Mauro Carvalho Chehab committed Oct 21, 2010
1 parent 9a1a0f3 commit dfd7cd2
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 00cc8db8ee5f29ae8cc49fc16a21bd1f04ca39f7
refs/heads/master: 9f490cd63297f7e7b46ccf2b88928d94ab98f149
27 changes: 21 additions & 6 deletions trunk/drivers/media/video/indycam.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
#include <linux/i2c.h>
#include <media/v4l2-device.h>
#include <media/v4l2-chip-ident.h>
#include <media/v4l2-i2c-drv.h>

#include "indycam.h"

Expand Down Expand Up @@ -378,9 +377,25 @@ static const struct i2c_device_id indycam_id[] = {
};
MODULE_DEVICE_TABLE(i2c, indycam_id);

static struct v4l2_i2c_driver_data v4l2_i2c_data = {
.name = "indycam",
.probe = indycam_probe,
.remove = indycam_remove,
.id_table = indycam_id,
static struct i2c_driver indycam_driver = {
.driver = {
.owner = THIS_MODULE,
.name = "indycam",
},
.probe = indycam_probe,
.remove = indycam_remove,
.id_table = indycam_id,
};

static __init int init_indycam(void)
{
return i2c_add_driver(&indycam_driver);
}

static __exit void exit_indycam(void)
{
i2c_del_driver(&indycam_driver);
}

module_init(init_indycam);
module_exit(exit_indycam);

0 comments on commit dfd7cd2

Please sign in to comment.