diff options
author | Michael Hunold <devnull@localhost> | 2003-05-06 15:07:21 +0000 |
---|---|---|
committer | Michael Hunold <devnull@localhost> | 2003-05-06 15:07:21 +0000 |
commit | 98a0a2449d34fea262dae8c5dbe88e78bd2bf3ea (patch) | |
tree | 0922229af073f7aef5746c57187bfd08640184cd /linux/drivers/media/dvb/dvb-core/dvbdev.h | |
parent | 236ed62b52066f9fe6eaa40fb63c07ccd458879f (diff) | |
download | mediapointer-dvb-s2-98a0a2449d34fea262dae8c5dbe88e78bd2bf3ea.tar.gz mediapointer-dvb-s2-98a0a2449d34fea262dae8c5dbe88e78bd2bf3ea.tar.bz2 |
Add a new "dvb_functions.c" and populate it with the
"kernel_thread_setup()" (now: dvb_kernel_thread_setup()) and
dvb_usercopy() function.
Because of the fact that we want to separate the dvb subsystem, it's
sometimes necessary to have some wrapper functions (for example
dvb_delay() or dvb_kernel_thread_setup()) to encapsulate linux
kernel facilities that can't be expressed as a one-liner.
The place for such functions is "dvb_functions.c". By this, we can
get rid of "dvb_compat.h" for 2.5 completely. Hooray!
I hope I did not break everything again, some cleanup is expected for
the build-template stuff, though.
Diffstat (limited to 'linux/drivers/media/dvb/dvb-core/dvbdev.h')
-rw-r--r-- | linux/drivers/media/dvb/dvb-core/dvbdev.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/linux/drivers/media/dvb/dvb-core/dvbdev.h b/linux/drivers/media/dvb/dvb-core/dvbdev.h index fcf42e347..33b8089b2 100644 --- a/linux/drivers/media/dvb/dvb-core/dvbdev.h +++ b/linux/drivers/media/dvb/dvb-core/dvbdev.h @@ -86,10 +86,5 @@ extern int dvb_generic_open (struct inode *inode, struct file *file); extern int dvb_generic_release (struct inode *inode, struct file *file); extern int dvb_generic_ioctl (struct inode *inode, struct file *file, unsigned int cmd, unsigned long arg); -int dvb_usercopy(struct inode *inode, struct file *file, - unsigned int cmd, unsigned long arg, - int (*func)(struct inode *inode, struct file *file, - unsigned int cmd, void *arg)); - #endif /* #ifndef _DVBDEV_H_ */ |