diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2014-12-23 07:46:27 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2015-01-27 07:01:33 -0500 |
commit | 861360a56d0bcbc0bec92a1f1266c66880b2e5ae (patch) | |
tree | 52fa8673c38526b25730a112e5c1f78465d6d499 /include/media | |
parent | 58fc0461f6c2e5684177f4616b1e60e36c0237e4 (diff) |
[media] videobuf: make unused exported functions static
The videobuf_dma_init* and videobuf_dma_map() functions are no longer
used except in videobuf-dma-sg.c itself. Make them static.
These functions were abused in various drivers. All those drivers
have now been fixed, so by no longer exporting these functions
future abuse is now prevented.
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'include/media')
-rw-r--r-- | include/media/videobuf-dma-sg.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/media/videobuf-dma-sg.h b/include/media/videobuf-dma-sg.h index fb6fd4d8f4ed..d8b27854e3bf 100644 --- a/include/media/videobuf-dma-sg.h +++ b/include/media/videobuf-dma-sg.h | |||
@@ -84,16 +84,8 @@ struct videobuf_dma_sg_memory { | |||
84 | * Despite the name, this is totally unrelated to videobuf, except that | 84 | * Despite the name, this is totally unrelated to videobuf, except that |
85 | * videobuf-dma-sg uses the same API internally. | 85 | * videobuf-dma-sg uses the same API internally. |
86 | */ | 86 | */ |
87 | void videobuf_dma_init(struct videobuf_dmabuf *dma); | ||
88 | int videobuf_dma_init_user(struct videobuf_dmabuf *dma, int direction, | ||
89 | unsigned long data, unsigned long size); | ||
90 | int videobuf_dma_init_kernel(struct videobuf_dmabuf *dma, int direction, | ||
91 | int nr_pages); | ||
92 | int videobuf_dma_init_overlay(struct videobuf_dmabuf *dma, int direction, | ||
93 | dma_addr_t addr, int nr_pages); | ||
94 | int videobuf_dma_free(struct videobuf_dmabuf *dma); | 87 | int videobuf_dma_free(struct videobuf_dmabuf *dma); |
95 | 88 | ||
96 | int videobuf_dma_map(struct device *dev, struct videobuf_dmabuf *dma); | ||
97 | int videobuf_dma_unmap(struct device *dev, struct videobuf_dmabuf *dma); | 89 | int videobuf_dma_unmap(struct device *dev, struct videobuf_dmabuf *dma); |
98 | struct videobuf_dmabuf *videobuf_to_dma(struct videobuf_buffer *buf); | 90 | struct videobuf_dmabuf *videobuf_to_dma(struct videobuf_buffer *buf); |
99 | 91 | ||