Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 93df3413 authored by Hartmut Hackmann's avatar Hartmut Hackmann Committed by Linus Torvalds
Browse files

[PATCH] v4l: 655: added support for the philips td1316 tuner



- Added support for the Philips TD1316 tuner

Signed-off-by: default avatarHartmut Hackmann <hartmut.hackmann@t.online.de>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@brturbo.com.br>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 3aa4f48a
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -189,6 +189,13 @@ static void set_type(struct i2c_client *c, unsigned int type,
		i2c_master_send(c, buffer, 4);
		default_tuner_init(c);
		break;
	case TUNER_PHILIPS_TD1316:
		buffer[0] = 0x0b;
		buffer[1] = 0xdc;
		buffer[2] = 0x86;
		buffer[3] = 0xa4;
		i2c_master_send(c,buffer,4);
		default_tuner_init(c);
	default:
		default_tuner_init(c);
		break;
+2 −0
Original line number Diff line number Diff line
@@ -248,6 +248,8 @@ static struct tunertype tuners[] = {
          16*160.25,16*464.25,0x01,0x02,0x08,0x8e,623},
 	{ "LG NTSC (TALN mini series)", LGINNOTEK, NTSC,
	  16*137.25,16*373.25,0x01,0x02,0x08,0x8e,732 },
	{ "Philips TD1316 Hybrid Tuner", Philips, PAL,
	  16*160.00,16*442.00,0xa1,0xa2,0xa4,0xc8,623 },
};

unsigned const int tuner_count = ARRAY_SIZE(tuners);
+1 −0
Original line number Diff line number Diff line
@@ -110,6 +110,7 @@
#define TUNER_LG_TDVS_H062F		64	/* DViCO FusionHDTV 5 */
#define TUNER_YMEC_TVF66T5_B_DFF	65	/* Acorp Y878F */
#define TUNER_LG_NTSC_TALN_MINI		66
#define TUNER_PHILIPS_TD1316		67

#define NOTUNER 0
#define PAL     1	/* PAL_BG */