diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2009-06-20 08:18:34 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-06-23 02:14:48 -0400 |
commit | 54bb501c069bbe34cf8becf0a9985fc6873d6b21 (patch) | |
tree | 7361c0a4f9a32ad9993c3d861a3e946f88f9a27d /drivers/media | |
parent | 5543e2b4c495714e5f1b2dbbe250df15239af1cd (diff) |
V4L/DVB (12111): tcm825x: remove incorrect __exit_p wrapper
tcm825x_remove is not necessarily called on module exit, it can also be
called when the i2c_adapter is removed. While the i2c adapter might never
be removed on an embedded system, in practice this sensor driver can also
be used in e.g. a USB webcam where this is a perfectly acceptable thing
to do.
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media')
-rw-r--r-- | drivers/media/video/tcm825x.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/video/tcm825x.c b/drivers/media/video/tcm825x.c index b30c49248217..b90e9da3167d 100644 --- a/drivers/media/video/tcm825x.c +++ b/drivers/media/video/tcm825x.c | |||
@@ -878,7 +878,7 @@ static int tcm825x_probe(struct i2c_client *client, | |||
878 | return rval; | 878 | return rval; |
879 | } | 879 | } |
880 | 880 | ||
881 | static int __exit tcm825x_remove(struct i2c_client *client) | 881 | static int tcm825x_remove(struct i2c_client *client) |
882 | { | 882 | { |
883 | struct tcm825x_sensor *sensor = i2c_get_clientdata(client); | 883 | struct tcm825x_sensor *sensor = i2c_get_clientdata(client); |
884 | 884 | ||
@@ -902,7 +902,7 @@ static struct i2c_driver tcm825x_i2c_driver = { | |||
902 | .name = TCM825X_NAME, | 902 | .name = TCM825X_NAME, |
903 | }, | 903 | }, |
904 | .probe = tcm825x_probe, | 904 | .probe = tcm825x_probe, |
905 | .remove = __exit_p(tcm825x_remove), | 905 | .remove = tcm825x_remove, |
906 | .id_table = tcm825x_id, | 906 | .id_table = tcm825x_id, |
907 | }; | 907 | }; |
908 | 908 | ||