aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/cx88/cx88.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/media/video/cx88/cx88.h')
-rw-r--r--drivers/media/video/cx88/cx88.h11
1 files changed, 4 insertions, 7 deletions
diff --git a/drivers/media/video/cx88/cx88.h b/drivers/media/video/cx88/cx88.h
index eb296bdecb1e..4e823f2a539a 100644
--- a/drivers/media/video/cx88/cx88.h
+++ b/drivers/media/video/cx88/cx88.h
@@ -210,6 +210,7 @@ extern struct sram_channel cx88_sram_channels[];
210#define CX88_BOARD_TE_DTV_250_OEM_SWANN 55 210#define CX88_BOARD_TE_DTV_250_OEM_SWANN 55
211#define CX88_BOARD_HAUPPAUGE_HVR1300 56 211#define CX88_BOARD_HAUPPAUGE_HVR1300 56
212#define CX88_BOARD_ADSTECH_PTV_390 57 212#define CX88_BOARD_ADSTECH_PTV_390 57
213#define CX88_BOARD_PINNACLE_PCTV_HD_800i 58
213 214
214enum cx88_itype { 215enum cx88_itype {
215 CX88_VMUX_COMPOSITE1 = 1, 216 CX88_VMUX_COMPOSITE1 = 1,
@@ -228,7 +229,7 @@ struct cx88_input {
228 enum cx88_itype type; 229 enum cx88_itype type;
229 u32 gpio0, gpio1, gpio2, gpio3; 230 u32 gpio0, gpio1, gpio2, gpio3;
230 unsigned int vmux:2; 231 unsigned int vmux:2;
231 unsigned int extadc:1; 232 unsigned int audioroute:2;
232}; 233};
233 234
234struct cx88_board { 235struct cx88_board {
@@ -461,6 +462,7 @@ struct cx8802_dev {
461 u32 mailbox; 462 u32 mailbox;
462 int width; 463 int width;
463 int height; 464 int height;
465 unsigned char mpeg_active; /* nonzero if mpeg encoder is active */
464 466
465 /* mpeg params */ 467 /* mpeg params */
466 struct cx2341x_mpeg_params params; 468 struct cx2341x_mpeg_params params;
@@ -588,6 +590,7 @@ extern void cx88_call_i2c_clients(struct cx88_core *core,
588/* ----------------------------------------------------------- */ 590/* ----------------------------------------------------------- */
589/* cx88-cards.c */ 591/* cx88-cards.c */
590 592
593extern int cx88_tuner_callback(void *dev, int command, int arg);
591extern int cx88_get_resources(const struct cx88_core *core, 594extern int cx88_get_resources(const struct cx88_core *core,
592 struct pci_dev *pci); 595 struct pci_dev *pci);
593extern struct cx88_core *cx88_core_create(struct pci_dev *pci, int nr); 596extern struct cx88_core *cx88_core_create(struct pci_dev *pci, int nr);
@@ -633,12 +636,6 @@ int cx8802_buf_prepare(struct videobuf_queue *q,struct cx8802_dev *dev,
633void cx8802_buf_queue(struct cx8802_dev *dev, struct cx88_buffer *buf); 636void cx8802_buf_queue(struct cx8802_dev *dev, struct cx88_buffer *buf);
634void cx8802_cancel_buffers(struct cx8802_dev *dev); 637void cx8802_cancel_buffers(struct cx8802_dev *dev);
635 638
636int cx8802_init_common(struct cx8802_dev *dev);
637void cx8802_fini_common(struct cx8802_dev *dev);
638
639int cx8802_suspend_common(struct pci_dev *pci_dev, pm_message_t state);
640int cx8802_resume_common(struct pci_dev *pci_dev);
641
642/* ----------------------------------------------------------- */ 639/* ----------------------------------------------------------- */
643/* cx88-video.c*/ 640/* cx88-video.c*/
644extern const u32 cx88_user_ctrls[]; 641extern const u32 cx88_user_ctrls[];