diff options
author | Michael Hunold <devnull@localhost> | 2003-12-15 20:54:10 +0000 |
---|---|---|
committer | Michael Hunold <devnull@localhost> | 2003-12-15 20:54:10 +0000 |
commit | 8ee8836220158e91941b7d508b5179bd49c5944d (patch) | |
tree | 56181f889a882e6da2c0558e5a26911905149bbf /linux/include | |
parent | b12f792f25aafd619d357cd987fd6682ee405e11 (diff) | |
download | mediapointer-dvb-s2-8ee8836220158e91941b7d508b5179bd49c5944d.tar.gz mediapointer-dvb-s2-8ee8836220158e91941b7d508b5179bd49c5944d.tar.bz2 |
- fix compilation
- more video/vbi open/release fixes
Diffstat (limited to 'linux/include')
-rw-r--r-- | linux/include/media/saa7146_vv.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/linux/include/media/saa7146_vv.h b/linux/include/media/saa7146_vv.h index 61a3f32dc..5043be6ee 100644 --- a/linux/include/media/saa7146_vv.h +++ b/linux/include/media/saa7146_vv.h @@ -171,12 +171,10 @@ struct saa7146_ext_vv struct saa7146_use_ops { void (*init)(struct saa7146_dev *, struct saa7146_vv *); - void(*open)(struct saa7146_dev *, struct saa7146_fh *); - void (*release)(struct saa7146_dev *, struct saa7146_fh *,struct file *); + void(*open)(struct saa7146_dev *, struct file *); + void (*release)(struct saa7146_dev *, struct file *); void (*irq_done)(struct saa7146_dev *, unsigned long status); ssize_t (*read)(struct file *, char *, size_t, loff_t *); - int (*capture_begin)(struct saa7146_fh *); - int (*capture_end)(struct saa7146_fh *); }; /* from saa7146_fops.c */ |