diff options
author | Hans Verkuil <hverkuil-cisco@xs4all.nl> | 2023-03-01 12:48:06 +0100 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@kernel.org> | 2023-03-20 00:22:56 +0100 |
commit | d75d29eb3596cc566b08e21d1c194d6ee737be1d (patch) | |
tree | 8245435e3b77b512548d53740f0a51aecd574881 /drivers/media/common/btcx-risc.h | |
parent | media: zoran: drop two obsolete prototypes from zoran_device.h (diff) | |
download | linux-d75d29eb3596cc566b08e21d1c194d6ee737be1d.tar.xz linux-d75d29eb3596cc566b08e21d1c194d6ee737be1d.zip |
media: common: btcx-risc.h: drop obsolete header
This header is no longer used, drop it.
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
Diffstat (limited to 'drivers/media/common/btcx-risc.h')
-rw-r--r-- | drivers/media/common/btcx-risc.h | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/drivers/media/common/btcx-risc.h b/drivers/media/common/btcx-risc.h deleted file mode 100644 index 76dc16f402b9..000000000000 --- a/drivers/media/common/btcx-risc.h +++ /dev/null @@ -1,29 +0,0 @@ -/* SPDX-License-Identifier: GPL-2.0 */ -/* - */ -struct btcx_riscmem { - unsigned int size; - __le32 *cpu; - __le32 *jmp; - dma_addr_t dma; -}; - -struct btcx_skiplist { - int start; - int end; -}; - -int btcx_riscmem_alloc(struct pci_dev *pci, - struct btcx_riscmem *risc, - unsigned int size); -void btcx_riscmem_free(struct pci_dev *pci, - struct btcx_riscmem *risc); - -int btcx_screen_clips(int swidth, int sheight, struct v4l2_rect *win, - struct v4l2_clip *clips, unsigned int n); -int btcx_align(struct v4l2_rect *win, struct v4l2_clip *clips, - unsigned int n, int mask); -void btcx_sort_clips(struct v4l2_clip *clips, unsigned int nclips); -void btcx_calc_skips(int line, int width, int *maxy, - struct btcx_skiplist *skips, unsigned int *nskips, - const struct v4l2_clip *clips, unsigned int nclips); |