summaryrefslogtreecommitdiff
path: root/linux/drivers/media/video/ivtv/ivtv-vbi.h
diff options
context:
space:
mode:
authorHans Verkuil <hverkuil@xs4all.nl>2007-08-23 10:42:59 +0200
committerHans Verkuil <hverkuil@xs4all.nl>2007-08-23 10:42:59 +0200
commit4cd021e1812491396b85d2f96ac4e6a68b021b15 (patch)
tree87824be133c0f0d0ef6d0858244e17951137c736 /linux/drivers/media/video/ivtv/ivtv-vbi.h
parentba03da316f9e322ba08e66ce79a12f122e731b45 (diff)
downloadmediapointer-dvb-s2-4cd021e1812491396b85d2f96ac4e6a68b021b15.tar.gz
mediapointer-dvb-s2-4cd021e1812491396b85d2f96ac4e6a68b021b15.tar.bz2
ivtv: header cleanup
From: Hans Verkuil <hverkuil@xs4all.nl> - add guards - remove unused header includes - move card-specific stuff from ivtv-driver.h to ivtv-cards.h - move YUV-specific stuff from ivtv-driver.h to ivtv-yuv.h Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Diffstat (limited to 'linux/drivers/media/video/ivtv/ivtv-vbi.h')
-rw-r--r--linux/drivers/media/video/ivtv/ivtv-vbi.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/linux/drivers/media/video/ivtv/ivtv-vbi.h b/linux/drivers/media/video/ivtv/ivtv-vbi.h
index ec211b497..d5740493a 100644
--- a/linux/drivers/media/video/ivtv/ivtv-vbi.h
+++ b/linux/drivers/media/video/ivtv/ivtv-vbi.h
@@ -17,6 +17,9 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
+#ifndef IVTV_VBI_H
+#define IVTV_VBI_H
+
ssize_t ivtv_write_vbi(struct ivtv *itv, const char __user *ubuf, size_t count);
void ivtv_process_vbi_data(struct ivtv *itv, struct ivtv_buffer *buf,
u64 pts_stamp, int streamtype);
@@ -24,3 +27,5 @@ int ivtv_used_line(struct ivtv *itv, int line, int field);
void ivtv_disable_vbi(struct ivtv *itv);
void ivtv_set_vbi(unsigned long arg);
void ivtv_vbi_work_handler(struct ivtv *itv);
+
+#endif