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/ttpci | |
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/ttpci')
-rw-r--r-- | linux/drivers/media/dvb/ttpci/av7110.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/dvb/ttpci/av7110.c b/linux/drivers/media/dvb/ttpci/av7110.c index 6a0d2878c..11185d662 100644 --- a/linux/drivers/media/dvb/ttpci/av7110.c +++ b/linux/drivers/media/dvb/ttpci/av7110.c @@ -339,7 +339,7 @@ static int arm_thread(void *data) DEB_EE(("av7110: %p\n",av7110)); - kernel_thread_setup ("arm_mon"); + dvb_kernel_thread_setup ("arm_mon"); av7110->arm_thread = current; while (!av7110->arm_rmmod && !signal_pending(current)) { |