diff options
author | Steven Toth <stoth@hauppauge.com> | 2007-03-19 18:22:41 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-10-09 21:08:06 -0400 |
commit | e133be0f587996f112d7984c03606af418a7ca05 (patch) | |
tree | 3b78505e5b265d7d95db6f7bfc0835aa15ed5788 /drivers/media/video/cx23885/cx23885.h | |
parent | 0fc0739ba940c07e97599a7ee04c24faae9808ed (diff) |
V4L/DVB (6157): Removed the need to manually define .bridge for each card
Moved the field from cx23885_board to cx23885_dev and added code to
iautomatically set the bridge type based on the pci device id.
Signed-off-by: Steven Toth <stoth@hauppauge.com>
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/cx23885/cx23885.h')
-rw-r--r-- | drivers/media/video/cx23885/cx23885.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/drivers/media/video/cx23885/cx23885.h b/drivers/media/video/cx23885/cx23885.h index 04105bcf53f3..4e1fc68d4206 100644 --- a/drivers/media/video/cx23885/cx23885.h +++ b/drivers/media/video/cx23885/cx23885.h | |||
@@ -101,11 +101,6 @@ struct cx23885_board { | |||
101 | CX23885_MPEG_UNDEFINED = 0, | 101 | CX23885_MPEG_UNDEFINED = 0, |
102 | CX23885_MPEG_DVB | 102 | CX23885_MPEG_DVB |
103 | } portc; | 103 | } portc; |
104 | enum { | ||
105 | CX23885_BRIDGE_UNDEFINED = 0, | ||
106 | CX23885_BRIDGE_885 = 885, | ||
107 | CX23885_BRIDGE_887 = 887, | ||
108 | } bridge; | ||
109 | struct cx23885_input input[MAX_CX23885_INPUT]; | 104 | struct cx23885_input input[MAX_CX23885_INPUT]; |
110 | }; | 105 | }; |
111 | 106 | ||
@@ -210,6 +205,12 @@ struct cx23885_dev { | |||
210 | 205 | ||
211 | /* sram configuration */ | 206 | /* sram configuration */ |
212 | struct sram_channel *sram_channels; | 207 | struct sram_channel *sram_channels; |
208 | |||
209 | enum { | ||
210 | CX23885_BRIDGE_UNDEFINED = 0, | ||
211 | CX23885_BRIDGE_885 = 885, | ||
212 | CX23885_BRIDGE_887 = 887, | ||
213 | } bridge; | ||
213 | }; | 214 | }; |
214 | 215 | ||
215 | #define SRAM_CH01 0 /* Video A */ | 216 | #define SRAM_CH01 0 /* Video A */ |