Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
0cda1255
Commit
0cda1255
authored
Jan 19, 2011
by
Mauro Carvalho Chehab
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[media] tuner-simple: add support for Tena TNF5337 MFD
Signed-off-by:
Mauro Carvalho Chehab
<
mchehab@redhat.com
>
parent
db4d5683
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
0 deletions
+22
-0
drivers/media/common/tuners/tuner-types.c
drivers/media/common/tuners/tuner-types.c
+21
-0
include/media/tuner.h
include/media/tuner.h
+1
-0
No files found.
drivers/media/common/tuners/tuner-types.c
View file @
0cda1255
...
...
@@ -971,6 +971,22 @@ static struct tuner_params tuner_tena_9533_di_params[] = {
},
};
/* ------------ TUNER_TENA_TNF_5337 - Tena tnf5337MFD STD M/N ------------ */
static
struct
tuner_range
tuner_tena_tnf_5337_ntsc_ranges
[]
=
{
{
16
*
166
.
25
/*MHz*/
,
0x86
,
0x01
,
},
{
16
*
466
.
25
/*MHz*/
,
0x86
,
0x02
,
},
{
16
*
999
.
99
,
0x86
,
0x08
,
},
};
static
struct
tuner_params
tuner_tena_tnf_5337_params
[]
=
{
{
.
type
=
TUNER_PARAM_TYPE_NTSC
,
.
ranges
=
tuner_tena_tnf_5337_ntsc_ranges
,
.
count
=
ARRAY_SIZE
(
tuner_tena_tnf_5337_ntsc_ranges
),
},
};
/* ------------ TUNER_PHILIPS_FMD1216ME(X)_MK3 - Philips PAL ------------ */
static
struct
tuner_range
tuner_philips_fmd1216me_mk3_pal_ranges
[]
=
{
...
...
@@ -1842,6 +1858,11 @@ struct tunertype tuners[] = {
.
params
=
tuner_philips_fq1236_mk5_params
,
.
count
=
ARRAY_SIZE
(
tuner_philips_fq1236_mk5_params
),
},
[
TUNER_TENA_TNF_5337
]
=
{
/* Tena 5337 MFD */
.
name
=
"Tena TNF5337 MFD"
,
.
params
=
tuner_tena_tnf_5337_params
,
.
count
=
ARRAY_SIZE
(
tuner_tena_tnf_5337_params
),
},
};
EXPORT_SYMBOL
(
tuners
);
...
...
include/media/tuner.h
View file @
0cda1255
...
...
@@ -131,6 +131,7 @@
#define TUNER_NXP_TDA18271 83
#define TUNER_SONY_BTF_PXN01Z 84
#define TUNER_PHILIPS_FQ1236_MK5 85
/* NTSC, TDA9885, no FM radio */
#define TUNER_TENA_TNF_5337 86
/* tv card specific */
#define TDA9887_PRESENT (1<<0)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment