* added 0.99 linux version
[mascara-docs.git] / i386 / linux / linux-2.3.21 / drivers / char / tuner.h
blobafb0f10fb6d832bc2dd2c0da463b25b549ae639a
1 /*
2 tuner.h - definition for different tuners
4 Copyright (C) 1997 Markus Schroeder (schroedm@uni-duesseldorf.de)
5 minor modifications by Ralph Metzler (rjkm@thp.uni-koeln.de)
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 #ifndef _TUNER_H
23 #define _TUNER_H
25 #define TUNER_TEMIC_PAL 0 /* Miro Gpio Coding -1 */
26 #define TUNER_PHILIPS_PAL_I 1
27 #define TUNER_PHILIPS_NTSC 2
28 #define TUNER_PHILIPS_SECAM 3
29 #define TUNER_ABSENT 4
30 #define TUNER_PHILIPS_PAL 5
31 #define TUNER_TEMIC_NTSC 6
32 #define TUNER_TEMIC_PAL_I 7
33 #define TUNER_TEMIC_4036FY5_NTSC 8
34 #define TUNER_ALPS_TSBH1_NTSC 9
36 #define NOTUNER 0
37 #define PAL 1
38 #define PAL_I 2
39 #define NTSC 3
40 #define SECAM 4
42 #define NoTuner 0
43 #define Philips 1
44 #define TEMIC 2
45 #define Sony 3
47 #define TUNER_SET_TYPE _IOW('t',1,int) /* set tuner type */
48 #define TUNER_SET_TVFREQ _IOW('t',2,int) /* set tv freq */
49 #define TUNER_SET_RADIOFREQ _IOW('t',3,int) /* set radio freq */
51 #endif