diff options
author | Mike Isely <devnull@localhost> | 2005-11-28 15:46:36 +0000 |
---|---|---|
committer | Mike Isely <devnull@localhost> | 2005-11-28 15:46:36 +0000 |
commit | 2e63c6f5ef81c91d14d406815fc056f76e732b15 (patch) | |
tree | 086252316a12e6210e2e9fbb0ab4c7d2f12e6224 | |
parent | 7e15b45118a2856a96417a1f9a6add070d29667f (diff) | |
download | mediapointer-dvb-s2-2e63c6f5ef81c91d14d406815fc056f76e732b15.tar.gz mediapointer-dvb-s2-2e63c6f5ef81c91d14d406815fc056f76e732b15.tar.bz2 |
Restore missing tuner definition for Hauppauge tuner type 0x103
- Type 0x103 ("TCL MFNM05-4") in the Hauppauge eeprom is a more
recent tuner that maps to TUNER_PHILIPS_FM1236_MK3. This had been
previously defined but due to some accident the definition got
removed. This change restores that definition. Change committed
on advice from Hans Verkuil <hverkuil@xs4all.nl>, who thinks he's
the one who had accidentally removed it before.
From: Mike Isely <isely@pobox.com>
Signed-off-by: Mike Isely <isely@pobox.com>
-rw-r--r-- | linux/drivers/media/video/tveeprom.c | 2 | ||||
-rw-r--r-- | v4l/ChangeLog | 9 |
2 files changed, 10 insertions, 1 deletions
diff --git a/linux/drivers/media/video/tveeprom.c b/linux/drivers/media/video/tveeprom.c index 6e6a03f90..3dc0e6f89 100644 --- a/linux/drivers/media/video/tveeprom.c +++ b/linux/drivers/media/video/tveeprom.c @@ -224,7 +224,7 @@ hauppauge_tuner[] = { TUNER_ABSENT, "Philips FMD1216ME"}, { TUNER_TEA5767, "Philips TEA5768HL FM Radio"}, { TUNER_ABSENT, "Panasonic ENV57H12D5"}, - { TUNER_ABSENT, "TCL MFNM05-4"}, + { TUNER_PHILIPS_FM1236_MK3, "TCL MFNM05-4"}, { TUNER_ABSENT, "TCL MNM05-4"}, { TUNER_PHILIPS_FM1216ME_MK3, "TCL MPE05-2"}, { TUNER_ABSENT, "TCL MQNM05-4"}, diff --git a/v4l/ChangeLog b/v4l/ChangeLog index 73b7fbd81..260846104 100644 --- a/v4l/ChangeLog +++ b/v4l/ChangeLog @@ -1,3 +1,12 @@ +2005-11-28 15:42 mcisely + + * ../linux/drivers/media/video/tveeprom.c: + + Restore missing tuner definition for Hauppauge tuner type 0x103 + ("TCL MFNM05-04"). + + Signed-off-by: Mike Isely <isely@pobox.com> + 2005-11-28 12:55 mkrufky * ../v4l/Make.config: |