Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 219115
b: refs/heads/master
c: 1f35266
h: refs/heads/master
i:
  219113: 2d75c63
  219111: d4216cf
v: v3
  • Loading branch information
Hans Verkuil authored and Mauro Carvalho Chehab committed Oct 21, 2010
1 parent 7c11a75 commit f4fbb33
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 8 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: 7074f407198c79498795bb0fd04c2df36ab97a19
refs/heads/master: 1f3526673f71124b16cc619adee8c7a0c1373f26
28 changes: 21 additions & 7 deletions trunk/drivers/media/video/vp27smpx.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,9 @@
#include <linux/ioctl.h>
#include <asm/uaccess.h>
#include <linux/i2c.h>
#include <linux/i2c-id.h>
#include <linux/videodev2.h>
#include <media/v4l2-device.h>
#include <media/v4l2-chip-ident.h>
#include <media/v4l2-i2c-drv.h>

MODULE_DESCRIPTION("vp27smpx driver");
MODULE_AUTHOR("Hans Verkuil");
Expand Down Expand Up @@ -200,9 +198,25 @@ static const struct i2c_device_id vp27smpx_id[] = {
};
MODULE_DEVICE_TABLE(i2c, vp27smpx_id);

static struct v4l2_i2c_driver_data v4l2_i2c_data = {
.name = "vp27smpx",
.probe = vp27smpx_probe,
.remove = vp27smpx_remove,
.id_table = vp27smpx_id,
static struct i2c_driver vp27smpx_driver = {
.driver = {
.owner = THIS_MODULE,
.name = "vp27smpx",
},
.probe = vp27smpx_probe,
.remove = vp27smpx_remove,
.id_table = vp27smpx_id,
};

static __init int init_vp27smpx(void)
{
return i2c_add_driver(&vp27smpx_driver);
}

static __exit void exit_vp27smpx(void)
{
i2c_del_driver(&vp27smpx_driver);
}

module_init(init_vp27smpx);
module_exit(exit_vp27smpx);

0 comments on commit f4fbb33

Please sign in to comment.