diff options
author | Ezequiel GarcĂa <elezegarcia@gmail.com> | 2012-03-10 11:34:27 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2012-03-19 15:45:49 -0300 |
commit | 2321acf2962514088c2230b6d54f7a56368576c5 (patch) | |
tree | ff8681997b6f28b2fe471e262203f403f62a84f2 /drivers/media | |
parent | 955b44304afca143b82304fe421e990ec607834a (diff) | |
download | op-kernel-dev-2321acf2962514088c2230b6d54f7a56368576c5.zip op-kernel-dev-2321acf2962514088c2230b6d54f7a56368576c5.tar.gz |
[media] media: em28xx: Remove unused urb arrays from device struct
These arrays were embedded in the struct itself, but they weren't
used by anyone, since urbs are now dinamically allocated
at em28xx_usb_isoc_ctl struct.
Tested by compilation only.
Signed-off-by: Ezequiel Garcia <elezegarcia@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media')
-rw-r--r-- | drivers/media/video/em28xx/em28xx.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/media/video/em28xx/em28xx.h b/drivers/media/video/em28xx/em28xx.h index 2ae6815..6a27e61 100644 --- a/drivers/media/video/em28xx/em28xx.h +++ b/drivers/media/video/em28xx/em28xx.h @@ -613,9 +613,6 @@ struct em28xx { unsigned int *alt_max_pkt_size; /* array of wMaxPacketSize */ int dvb_alt; /* alternate for DVB */ unsigned int dvb_max_pkt_size; /* wMaxPacketSize for DVB */ - struct urb *urb[EM28XX_NUM_BUFS]; /* urb for isoc transfers */ - char *transfer_buffer[EM28XX_NUM_BUFS]; /* transfer buffers for isoc - transfer */ char urb_buf[URB_MAX_CTRL_SIZE]; /* urb control msg buffer */ /* helper funcs that call usb_control_msg */ |