summaryrefslogtreecommitdiff
path: root/include/media/videobuf-dma-contig.h
diff options
context:
space:
mode:
authorHans Verkuil <hverkuil-cisco@xs4all.nl>2023-08-13 11:22:54 +0300
committerHans Verkuil <hverkuil-cisco@xs4all.nl>2023-09-27 10:40:01 +0300
commit2a2fffb488a3c5ea9c06d0b572c90c4aa78709b6 (patch)
tree9ac3d17c5e928b040797a54223af057a1d4c64f0 /include/media/videobuf-dma-contig.h
parent785c4aa400cb81cb96793771bb629c6582c71f21 (diff)
downloadlinux-2a2fffb488a3c5ea9c06d0b572c90c4aa78709b6.tar.xz
media: remove the old videobuf framework
The last driver that still used this old framework has been converted to the videobuf2 framework. So it is now time to delete the old videobuf code. Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Diffstat (limited to 'include/media/videobuf-dma-contig.h')
-rw-r--r--include/media/videobuf-dma-contig.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/include/media/videobuf-dma-contig.h b/include/media/videobuf-dma-contig.h
deleted file mode 100644
index 525883b2c53e..000000000000
--- a/include/media/videobuf-dma-contig.h
+++ /dev/null
@@ -1,30 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0-only */
-/*
- * helper functions for physically contiguous capture buffers
- *
- * The functions support hardware lacking scatter gather support
- * (i.e. the buffers must be linear in physical memory)
- *
- * Copyright (c) 2008 Magnus Damm
- */
-#ifndef _VIDEOBUF_DMA_CONTIG_H
-#define _VIDEOBUF_DMA_CONTIG_H
-
-#include <linux/dma-mapping.h>
-#include <media/videobuf-core.h>
-
-void videobuf_queue_dma_contig_init(struct videobuf_queue *q,
- const struct videobuf_queue_ops *ops,
- struct device *dev,
- spinlock_t *irqlock,
- enum v4l2_buf_type type,
- enum v4l2_field field,
- unsigned int msize,
- void *priv,
- struct mutex *ext_lock);
-
-dma_addr_t videobuf_to_dma_contig(struct videobuf_buffer *buf);
-void videobuf_dma_contig_free(struct videobuf_queue *q,
- struct videobuf_buffer *buf);
-
-#endif /* _VIDEOBUF_DMA_CONTIG_H */