[media] s5p-mfc: Remove unused alloc field from private buffer struct
authorPawel Osciak <posciak@chromium.org>
Tue, 21 Oct 2014 11:07:05 +0000 (08:07 -0300)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Tue, 28 Oct 2014 17:50:35 +0000 (15:50 -0200)
This field is no longer used as MFC driver doesn't use vb2 alloc contexts
anymore.

Signed-off-by: Pawel Osciak <posciak@chromium.org>
Signed-off-by: Kiran AVND <avnd.kiran@samsung.com>
Signed-off-by: Arun Kumar K <arun.kk@samsung.com>
Signed-off-by: Kamil Debski <k.debski@samsung.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
drivers/media/platform/s5p-mfc/s5p_mfc_common.h

index 5b0c33420e6166b4bac3e7086ae53593f0f903a1..15f7663dd9f5c193ba28968b2da5326f2bf19ea4 100644 (file)
@@ -237,8 +237,6 @@ struct s5p_mfc_variant {
 
 /**
  * struct s5p_mfc_priv_buf - represents internal used buffer
- * @alloc:             allocation-specific context for each buffer
- *                     (videobuf2 allocator)
  * @ofs:               offset of each buffer, will be used for MFC
  * @virt:              kernel virtual address, only valid when the
  *                     buffer accessed by driver
@@ -246,7 +244,6 @@ struct s5p_mfc_variant {
  * @size:              size of the buffer
  */
 struct s5p_mfc_priv_buf {
-       void            *alloc;
        unsigned long   ofs;
        void            *virt;
        dma_addr_t      dma;