diff options
author | Luca Risolia <luca.risolia@studio.unibo.it> | 2007-01-08 09:38:36 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-02-21 10:34:20 -0500 |
commit | 2656312724d97ebc2e267e0a9740d51ad7aa9a04 (patch) | |
tree | 57b1cafd03e6c4c461d713748bdf5376873a6027 /drivers/media/video/et61x251/et61x251.h | |
parent | 7e3a0660700ad47ee6e296fe7090d771becfcf96 (diff) |
V4L/DVB (5064): ET61X251 driver updates.
- Implement audio ioctl's and VIDIOC_ENUM_FRAMESIZES
- Documentation updates
- Generic improvements
Signed-off-by: Luca Risolia <luca.risolia@studio.unibo.it>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/et61x251/et61x251.h')
-rw-r--r-- | drivers/media/video/et61x251/et61x251.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/media/video/et61x251/et61x251.h b/drivers/media/video/et61x251/et61x251.h index 2e5ca4032489..262f98e12409 100644 --- a/drivers/media/video/et61x251/et61x251.h +++ b/drivers/media/video/et61x251/et61x251.h | |||
@@ -171,10 +171,7 @@ struct et61x251_device { | |||
171 | struct et61x251_device* | 171 | struct et61x251_device* |
172 | et61x251_match_id(struct et61x251_device* cam, const struct usb_device_id *id) | 172 | et61x251_match_id(struct et61x251_device* cam, const struct usb_device_id *id) |
173 | { | 173 | { |
174 | if (usb_match_id(usb_ifnum_to_if(cam->usbdev, 0), id)) | 174 | return usb_match_id(usb_ifnum_to_if(cam->usbdev, 0), id) ? cam : NULL; |
175 | return cam; | ||
176 | |||
177 | return NULL; | ||
178 | } | 175 | } |
179 | 176 | ||
180 | 177 | ||