diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2006-03-19 12:45:38 +0100 |
---|---|---|
committer | Hans Verkuil <hverkuil@xs4all.nl> | 2006-03-19 12:45:38 +0100 |
commit | a54e9c36217d11493c90e0dbdef2f48625525702 (patch) | |
tree | 0c4ea82dadeacc260ab5d1357fd51d84922964ff /linux/drivers/media/video | |
parent | b4c52dbb177f9dccf0366992ebdc9b66d7d92baa (diff) | |
download | mediapointer-dvb-s2-a54e9c36217d11493c90e0dbdef2f48625525702.tar.gz mediapointer-dvb-s2-a54e9c36217d11493c90e0dbdef2f48625525702.tar.bz2 |
Add new media/msp3400.h header containing the routing macros
From: Hans Verkuil <hverkuil@xs4all.nl>
Moved msp3400.h to msp3400-driver.h.
Created media/msp3400.h with the new routing defines and lots of comments.
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Diffstat (limited to 'linux/drivers/media/video')
-rw-r--r-- | linux/drivers/media/video/em28xx/em28xx-cards.c | 1 | ||||
-rw-r--r-- | linux/drivers/media/video/msp3400-driver.c | 3 | ||||
-rw-r--r-- | linux/drivers/media/video/msp3400-driver.h (renamed from linux/drivers/media/video/msp3400.h) | 6 | ||||
-rw-r--r-- | linux/drivers/media/video/msp3400-kthreads.c | 3 | ||||
-rw-r--r-- | linux/drivers/media/video/pvrusb2/pvrusb2-audio.c | 2 |
5 files changed, 8 insertions, 7 deletions
diff --git a/linux/drivers/media/video/em28xx/em28xx-cards.c b/linux/drivers/media/video/em28xx/em28xx-cards.c index de6d61d3c..3aeca4ddc 100644 --- a/linux/drivers/media/video/em28xx/em28xx-cards.c +++ b/linux/drivers/media/video/em28xx/em28xx-cards.c @@ -32,7 +32,6 @@ #include <media/audiochip.h> #include <media/tveeprom.h> #include <media/v4l2-common.h> -#include "msp3400.h" #include "em28xx.h" diff --git a/linux/drivers/media/video/msp3400-driver.c b/linux/drivers/media/video/msp3400-driver.c index 6bc9c4774..843a34ac9 100644 --- a/linux/drivers/media/video/msp3400-driver.c +++ b/linux/drivers/media/video/msp3400-driver.c @@ -55,6 +55,7 @@ #include <linux/videodev2.h> #include <media/v4l2-common.h> #include <media/tvaudio.h> +#include <media/msp3400.h> #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0) #include <linux/kthread.h> #include <linux/suspend.h> @@ -62,7 +63,7 @@ #if LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0) #include "i2c-compat.h" #endif -#include "msp3400.h" +#include "msp3400-driver.h" /* ---------------------------------------------------------------------- */ diff --git a/linux/drivers/media/video/msp3400.h b/linux/drivers/media/video/msp3400-driver.h index fdab5ea9b..033d896e6 100644 --- a/linux/drivers/media/video/msp3400.h +++ b/linux/drivers/media/video/msp3400-driver.h @@ -2,8 +2,8 @@ * $Id: msp3400.h,v 1.11 2006/01/22 13:08:51 hverkuil Exp $ */ -#ifndef MSP3400_H -#define MSP3400_H +#ifndef MSP3400_DRIVER_H +#define MSP3400_DRIVER_H /* ---------------------------------------------------------------------- */ @@ -115,4 +115,4 @@ int msp34xxg_thread(void *data); void msp3400c_set_mode(struct i2c_client *client, int mode); void msp3400c_set_carrier(struct i2c_client *client, int cdo1, int cdo2); -#endif /* MSP3400_H */ +#endif /* MSP3400_DRIVER_H */ diff --git a/linux/drivers/media/video/msp3400-kthreads.c b/linux/drivers/media/video/msp3400-kthreads.c index ea2449b7c..06c65dfc2 100644 --- a/linux/drivers/media/video/msp3400-kthreads.c +++ b/linux/drivers/media/video/msp3400-kthreads.c @@ -27,6 +27,7 @@ #include <linux/videodev.h> #include <linux/videodev2.h> #include <media/v4l2-common.h> +#include <media/msp3400.h> #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0) #include <linux/kthread.h> #include <linux/suspend.h> @@ -34,7 +35,7 @@ #if LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0) #include "i2c-compat.h" #endif -#include "msp3400.h" +#include "msp3400-driver.h" /* this one uses the automatic sound standard detection of newer msp34xx chip versions */ diff --git a/linux/drivers/media/video/pvrusb2/pvrusb2-audio.c b/linux/drivers/media/video/pvrusb2/pvrusb2-audio.c index 0304ee1e5..0501851dc 100644 --- a/linux/drivers/media/video/pvrusb2/pvrusb2-audio.c +++ b/linux/drivers/media/video/pvrusb2/pvrusb2-audio.c @@ -24,8 +24,8 @@ #include "pvrusb2-audio.h" #include "pvrusb2-hdw-internal.h" #include "pvrusb2-debug.h" -#include "msp3400.h" #include <linux/videodev.h> +#include "msp3400-driver.h" #include <media/tvaudio.h> #include <media/v4l2-common.h> |