Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3946b4a5 authored by Laurent Pinchart's avatar Laurent Pinchart Committed by Mauro Carvalho Chehab
Browse files

[media] go7007: Add MODULE_DEVICE_TABLE to the go7007 I2C modules



The device table is required to load modules based on modaliases.

Signed-off-by: default avatarLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 1532a070
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -81,6 +81,7 @@ static const struct i2c_device_id wis_ov7640_id[] = {
	{ "wis_ov7640", 0 },
	{ }
};
MODULE_DEVICE_TABLE(i2c, wis_ov7640_id);

static struct i2c_driver wis_ov7640_driver = {
	.driver = {
+1 −0
Original line number Diff line number Diff line
@@ -308,6 +308,7 @@ static const struct i2c_device_id wis_saa7113_id[] = {
	{ "wis_saa7113", 0 },
	{ }
};
MODULE_DEVICE_TABLE(i2c, wis_saa7113_id);

static struct i2c_driver wis_saa7113_driver = {
	.driver = {
+1 −0
Original line number Diff line number Diff line
@@ -441,6 +441,7 @@ static const struct i2c_device_id wis_saa7115_id[] = {
	{ "wis_saa7115", 0 },
	{ }
};
MODULE_DEVICE_TABLE(i2c, wis_saa7115_id);

static struct i2c_driver wis_saa7115_driver = {
	.driver = {
+1 −0
Original line number Diff line number Diff line
@@ -692,6 +692,7 @@ static const struct i2c_device_id wis_sony_tuner_id[] = {
	{ "wis_sony_tuner", 0 },
	{ }
};
MODULE_DEVICE_TABLE(i2c, wis_sony_tuner_id);

static struct i2c_driver wis_sony_tuner_driver = {
	.driver = {
+1 −0
Original line number Diff line number Diff line
@@ -331,6 +331,7 @@ static const struct i2c_device_id wis_tw2804_id[] = {
	{ "wis_tw2804", 0 },
	{ }
};
MODULE_DEVICE_TABLE(i2c, wis_tw2804_id);

static struct i2c_driver wis_tw2804_driver = {
	.driver = {
Loading