Hi Gerd, Here is a patch that provides (more) correct support for the MPEX card with a tuner. The video muxes are correct; can't check the audio muxes (but will when I get a chance). As the card is miss-detected as an EMPRESS it is necessary to use 'card=21' when installing. cheers, -Greg --- saa7134.h.orig Thu Oct 9 10:01:54 2003 +++ saa7134.h Wed Oct 8 12:21:53 2003 @@ -170,6 +170,7 @@ #define SAA7134_BOARD_BMK_MPEX_NOTUNER 18 #define SAA7134_BOARD_VIDEOMATE_TV 19 #define SAA7134_BOARD_CRONOS_PLUS 20 +#define SAA7134_BOARD_BMK_MPEX_TUNER 21 #define SAA7134_INPUT_MAX 8 --- saa7134-cards.c.orig Thu Oct 9 10:00:21 2003 +++ saa7134-cards.c Thu Oct 9 09:52:37 2003 @@ -561,6 +561,29 @@ .name = name_comp1, .vmux = 0, }}, + }, + [SAA7134_BOARD_BMK_MPEX_TUNER] = { + /* "Greg Wickham <greg.wickham@xxxxxxxxxxxxx> */ + .name = "BMK MPEX Tuner", + .audio_clock = 0x200000, + .tuner_type = TUNER_PHILIPS_PAL, + .inputs = {{ + .name = name_comp1, + .vmux = 1, + .amux = LINE1, + },{ + .name = name_svideo, + .vmux = 8, + .amux = LINE1, + },{ + .name = name_tv, + .vmux = 3, + .amux = LINE2, + .tv = 1, + }}, + .i2s_rate = 48000, + .has_ts = 1, + .video_out = CCIR656, }, }; const unsigned int saa7134_bcount = ARRAY_SIZE(saa7134_boards);