]> git.ipfire.org Git - thirdparty/linux.git/blobdiff - drivers/staging/media/ipu3/ipu3-css-pool.h
staging: media: ipu3: use vmap instead of reimplementing it
[thirdparty/linux.git] / drivers / staging / media / ipu3 / ipu3-css-pool.h
index f4a60b41401b988eaf18d2ec64da64df0101a994..a8ccd4f7032019349d31b5339869737993a483e3 100644 (file)
@@ -15,14 +15,12 @@ struct imgu_device;
  * @size:              size of the buffer in bytes.
  * @vaddr:             kernel virtual address.
  * @daddr:             iova dma address to access IPU3.
- * @vma:               private, a pointer to &struct vm_struct,
- *                     used for imgu_dmamap_free.
  */
 struct imgu_css_map {
        size_t size;
        void *vaddr;
        dma_addr_t daddr;
-       struct vm_struct *vma;
+       struct page **pages;
 };
 
 /**