diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-01-26 00:25:02 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-01-26 00:25:02 -0500 |
commit | 8f5f90a872c38b4e78f3cc95e8a25434b98e4db2 (patch) | |
tree | 36c50b0c97286ab89c85016f7ab281f8e843c05c /drivers/media/radio/tef6862.c | |
parent | c0cd2da16b431a2007ea83865f3dd1530c1643a5 (diff) | |
parent | 949db153b6466c6f7cad5a427ecea94985927311 (diff) |
Merge 3.8-rc5 into staging-next
This resolves a merge issue with a iio driver, and the zram code.
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/media/radio/tef6862.c')
-rw-r--r-- | drivers/media/radio/tef6862.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/media/radio/tef6862.c b/drivers/media/radio/tef6862.c index 06d47e5cce9f..b18c2dc268ba 100644 --- a/drivers/media/radio/tef6862.c +++ b/drivers/media/radio/tef6862.c | |||
@@ -165,8 +165,8 @@ static const struct v4l2_subdev_ops tef6862_ops = { | |||
165 | * concerning the addresses: i2c wants 7 bit (without the r/w bit), so '>>1' | 165 | * concerning the addresses: i2c wants 7 bit (without the r/w bit), so '>>1' |
166 | */ | 166 | */ |
167 | 167 | ||
168 | static int __devinit tef6862_probe(struct i2c_client *client, | 168 | static int tef6862_probe(struct i2c_client *client, |
169 | const struct i2c_device_id *id) | 169 | const struct i2c_device_id *id) |
170 | { | 170 | { |
171 | struct tef6862_state *state; | 171 | struct tef6862_state *state; |
172 | struct v4l2_subdev *sd; | 172 | struct v4l2_subdev *sd; |
@@ -189,7 +189,7 @@ static int __devinit tef6862_probe(struct i2c_client *client, | |||
189 | return 0; | 189 | return 0; |
190 | } | 190 | } |
191 | 191 | ||
192 | static int __devexit tef6862_remove(struct i2c_client *client) | 192 | static int tef6862_remove(struct i2c_client *client) |
193 | { | 193 | { |
194 | struct v4l2_subdev *sd = i2c_get_clientdata(client); | 194 | struct v4l2_subdev *sd = i2c_get_clientdata(client); |
195 | 195 | ||
@@ -211,7 +211,7 @@ static struct i2c_driver tef6862_driver = { | |||
211 | .name = DRIVER_NAME, | 211 | .name = DRIVER_NAME, |
212 | }, | 212 | }, |
213 | .probe = tef6862_probe, | 213 | .probe = tef6862_probe, |
214 | .remove = __devexit_p(tef6862_remove), | 214 | .remove = tef6862_remove, |
215 | .id_table = tef6862_id, | 215 | .id_table = tef6862_id, |
216 | }; | 216 | }; |
217 | 217 | ||