diff options
Diffstat (limited to 'drivers/media/video/cx23885/cx23885.h')
-rw-r--r-- | drivers/media/video/cx23885/cx23885.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/drivers/media/video/cx23885/cx23885.h b/drivers/media/video/cx23885/cx23885.h index c0f4e4337351..e44698a6bede 100644 --- a/drivers/media/video/cx23885/cx23885.h +++ b/drivers/media/video/cx23885/cx23885.h | |||
@@ -86,12 +86,14 @@ struct cx23885_input { | |||
86 | u32 gpio0, gpio1, gpio2, gpio3; | 86 | u32 gpio0, gpio1, gpio2, gpio3; |
87 | }; | 87 | }; |
88 | 88 | ||
89 | typedef enum { | ||
90 | CX23885_MPEG_UNDEFINED = 0, | ||
91 | CX23885_MPEG_DVB | ||
92 | } port_t; | ||
93 | |||
89 | struct cx23885_board { | 94 | struct cx23885_board { |
90 | char *name; | 95 | char *name; |
91 | enum { | 96 | port_t portb, portc; |
92 | CX23885_MPEG_UNDEFINED = 0, | ||
93 | CX23885_MPEG_DVB | ||
94 | } portc; | ||
95 | struct cx23885_input input[MAX_CX23885_INPUT]; | 97 | struct cx23885_input input[MAX_CX23885_INPUT]; |
96 | }; | 98 | }; |
97 | 99 | ||