blob: 6f0d376f0d1802b964a2cbfa9b10a53116fb115c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
3 * i2c tv tuner chip device driver
4 * controls all those simple 4-control-bytes style tuners.
5 */
6#include <linux/delay.h>
7#include <linux/i2c.h>
8#include <linux/videodev.h>
9#include <media/tuner.h>
10
Mauro Carvalho Chehab5c07db02006-01-09 15:25:11 -020011static int offset = 0;
12module_param(offset, int, 0666);
13MODULE_PARM_DESC(offset,"Allows to specify an offset for tuner");
14
Linus Torvalds1da177e2005-04-16 15:20:36 -070015/* ---------------------------------------------------------------------- */
16
17/* tv standard selection for Temic 4046 FM5
18 this value takes the low bits of control byte 2
19 from datasheet Rev.01, Feb.00
20 standard BG I L L2 D
21 picture IF 38.9 38.9 38.9 33.95 38.9
22 sound 1 33.4 32.9 32.4 40.45 32.4
23 sound 2 33.16
24 NICAM 33.05 32.348 33.05 33.05
25 */
26#define TEMIC_SET_PAL_I 0x05
27#define TEMIC_SET_PAL_DK 0x09
28#define TEMIC_SET_PAL_L 0x0a // SECAM ?
29#define TEMIC_SET_PAL_L2 0x0b // change IF !
30#define TEMIC_SET_PAL_BG 0x0c
31
32/* tv tuner system standard selection for Philips FQ1216ME
33 this value takes the low bits of control byte 2
34 from datasheet "1999 Nov 16" (supersedes "1999 Mar 23")
35 standard BG DK I L L`
36 picture carrier 38.90 38.90 38.90 38.90 33.95
37 colour 34.47 34.47 34.47 34.47 38.38
38 sound 1 33.40 32.40 32.90 32.40 40.45
39 sound 2 33.16 - - - -
40 NICAM 33.05 33.05 32.35 33.05 39.80
41 */
42#define PHILIPS_SET_PAL_I 0x01 /* Bit 2 always zero !*/
43#define PHILIPS_SET_PAL_BGDK 0x09
44#define PHILIPS_SET_PAL_L2 0x0a
45#define PHILIPS_SET_PAL_L 0x0b
46
47/* system switching for Philips FI1216MF MK2
48 from datasheet "1996 Jul 09",
49 standard BG L L'
50 picture carrier 38.90 38.90 33.95
51 colour 34.47 34.37 38.38
52 sound 1 33.40 32.40 40.45
53 sound 2 33.16 - -
54 NICAM 33.05 33.05 39.80
55 */
56#define PHILIPS_MF_SET_BG 0x01 /* Bit 2 must be zero, Bit 3 is system output */
57#define PHILIPS_MF_SET_PAL_L 0x03 // France
58#define PHILIPS_MF_SET_PAL_L2 0x02 // L'
59
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -070060/* Control byte */
61
62#define TUNER_RATIO_MASK 0x06 /* Bit cb1:cb2 */
63#define TUNER_RATIO_SELECT_50 0x00
64#define TUNER_RATIO_SELECT_32 0x02
65#define TUNER_RATIO_SELECT_166 0x04
66#define TUNER_RATIO_SELECT_62 0x06
67
68#define TUNER_CHARGE_PUMP 0x40 /* Bit cb6 */
69
70/* Status byte */
71
72#define TUNER_POR 0x80
73#define TUNER_FL 0x40
74#define TUNER_MODE 0x38
75#define TUNER_AFC 0x07
76#define TUNER_SIGNAL 0x07
77#define TUNER_STEREO 0x10
78
79#define TUNER_PLL_LOCKED 0x40
80#define TUNER_STEREO_MK3 0x04
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Michael Krufky7b0ac9c2006-01-13 14:10:25 -020082#define TUNER_PARAM_ANALOG 0 /* to be removed */
83/* FIXME:
84 * Right now, all tuners are using the first tuner_params[] array element
85 * for analog mode. In the future, we will be merging similar tuner
86 * definitions together, such that each tuner definition will have a
87 * tuner_params struct for each available video standard. At that point,
88 * TUNER_PARAM_ANALOG will be removed, and the tuner_params[] array
89 * element will be chosen based on the video standard in use.
90 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93/* ---------------------------------------------------------------------- */
94
95static int tuner_getstatus(struct i2c_client *c)
96{
97 unsigned char byte;
98
99 if (1 != i2c_master_recv(c,&byte,1))
100 return 0;
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 return byte;
103}
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105static int tuner_signal(struct i2c_client *c)
106{
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700107 return (tuner_getstatus(c) & TUNER_SIGNAL) << 13;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108}
109
110static int tuner_stereo(struct i2c_client *c)
111{
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700112 int stereo, status;
113 struct tuner *t = i2c_get_clientdata(c);
114
115 status = tuner_getstatus (c);
116
117 switch (t->type) {
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800118 case TUNER_PHILIPS_FM1216ME_MK3:
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700119 case TUNER_PHILIPS_FM1236_MK3:
120 case TUNER_PHILIPS_FM1256_IH3:
121 stereo = ((status & TUNER_SIGNAL) == TUNER_STEREO_MK3);
122 break;
123 default:
124 stereo = status & TUNER_STEREO;
125 }
126
127 return stereo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128}
129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
131/* ---------------------------------------------------------------------- */
132
133static void default_set_tv_freq(struct i2c_client *c, unsigned int freq)
134{
135 struct tuner *t = i2c_get_clientdata(c);
Michael Krufky3fc46d32006-01-23 17:11:11 -0200136 u8 config, cb, tuneraddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 u16 div;
138 struct tunertype *tun;
Hans Verkuil27487d42006-01-15 15:04:52 -0200139 u8 buffer[4];
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200140 int rc, IFPCoff, i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
142 tun = &tuners[t->type];
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200143 j = TUNER_PARAM_ANALOG;
144
145 for (i = 0; i < tun->params[j].count; i++) {
146 if (freq > tun->params[j].ranges[i].limit)
Michael Krufky90200d22006-01-09 15:25:38 -0200147 continue;
148 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 }
Hans Verkuil27487d42006-01-15 15:04:52 -0200150 if (i == tun->params[j].count) {
151 tuner_dbg("TV frequency out of range (%d > %d)",
152 freq, tun->params[j].ranges[i - 1].limit);
153 freq = tun->params[j].ranges[--i].limit;
154 }
Michael Krufky3fc46d32006-01-23 17:11:11 -0200155 config = tun->params[j].ranges[i].config;
Michael Krufkyab66b222006-01-23 17:11:11 -0200156 cb = tun->params[j].ranges[i].cb;
Michael Krufky90200d22006-01-09 15:25:38 -0200157 /* i == 0 -> VHF_LO */
158 /* i == 1 -> VHF_HI */
159 /* i == 2 -> UHF */
160 tuner_dbg("tv: range %d\n",i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162 /* tv norm specific stuff for multi-norm tuners */
163 switch (t->type) {
164 case TUNER_PHILIPS_SECAM: // FI1216MF
165 /* 0x01 -> ??? no change ??? */
166 /* 0x02 -> PAL BDGHI / SECAM L */
167 /* 0x04 -> ??? PAL others / SECAM others ??? */
Michael Krufkyab66b222006-01-23 17:11:11 -0200168 cb &= ~0x02;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 if (t->std & V4L2_STD_SECAM)
Michael Krufkyab66b222006-01-23 17:11:11 -0200170 cb |= 0x02;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 break;
172
173 case TUNER_TEMIC_4046FM5:
Michael Krufkyab66b222006-01-23 17:11:11 -0200174 cb &= ~0x0f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
176 if (t->std & V4L2_STD_PAL_BG) {
Michael Krufkyab66b222006-01-23 17:11:11 -0200177 cb |= TEMIC_SET_PAL_BG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179 } else if (t->std & V4L2_STD_PAL_I) {
Michael Krufkyab66b222006-01-23 17:11:11 -0200180 cb |= TEMIC_SET_PAL_I;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182 } else if (t->std & V4L2_STD_PAL_DK) {
Michael Krufkyab66b222006-01-23 17:11:11 -0200183 cb |= TEMIC_SET_PAL_DK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
185 } else if (t->std & V4L2_STD_SECAM_L) {
Michael Krufkyab66b222006-01-23 17:11:11 -0200186 cb |= TEMIC_SET_PAL_L;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
188 }
189 break;
190
191 case TUNER_PHILIPS_FQ1216ME:
Michael Krufkyab66b222006-01-23 17:11:11 -0200192 cb &= ~0x0f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194 if (t->std & (V4L2_STD_PAL_BG|V4L2_STD_PAL_DK)) {
Michael Krufkyab66b222006-01-23 17:11:11 -0200195 cb |= PHILIPS_SET_PAL_BGDK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197 } else if (t->std & V4L2_STD_PAL_I) {
Michael Krufkyab66b222006-01-23 17:11:11 -0200198 cb |= PHILIPS_SET_PAL_I;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200 } else if (t->std & V4L2_STD_SECAM_L) {
Michael Krufkyab66b222006-01-23 17:11:11 -0200201 cb |= PHILIPS_SET_PAL_L;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
203 }
204 break;
205
206 case TUNER_PHILIPS_ATSC:
207 /* 0x00 -> ATSC antenna input 1 */
208 /* 0x01 -> ATSC antenna input 2 */
209 /* 0x02 -> NTSC antenna input 1 */
210 /* 0x03 -> NTSC antenna input 2 */
Michael Krufkyab66b222006-01-23 17:11:11 -0200211 cb &= ~0x03;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 if (!(t->std & V4L2_STD_ATSC))
Michael Krufkyab66b222006-01-23 17:11:11 -0200213 cb |= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 /* FIXME: input */
215 break;
216
217 case TUNER_MICROTUNE_4042FI5:
218 /* Set the charge pump for fast tuning */
Michael Krufky3fc46d32006-01-23 17:11:11 -0200219 config |= TUNER_CHARGE_PUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 break;
Kirk Lapraye976f9372005-11-08 21:37:04 -0800221
222 case TUNER_PHILIPS_TUV1236D:
223 /* 0x40 -> ATSC antenna input 1 */
224 /* 0x48 -> ATSC antenna input 2 */
225 /* 0x00 -> NTSC antenna input 1 */
226 /* 0x08 -> NTSC antenna input 2 */
Kirk Laprayfde6d312005-11-08 21:38:18 -0800227 buffer[0] = 0x14;
228 buffer[1] = 0x00;
229 buffer[2] = 0x17;
230 buffer[3] = 0x00;
Michael Krufkyab66b222006-01-23 17:11:11 -0200231 cb &= ~0x40;
Kirk Laprayfde6d312005-11-08 21:38:18 -0800232 if (t->std & V4L2_STD_ATSC) {
Michael Krufkyab66b222006-01-23 17:11:11 -0200233 cb |= 0x40;
Kirk Laprayfde6d312005-11-08 21:38:18 -0800234 buffer[1] = 0x04;
235 }
236 /* set to the correct mode (analog or digital) */
Kirk Laprayfde6d312005-11-08 21:38:18 -0800237 tuneraddr = c->addr;
238 c->addr = 0x0a;
239 if (2 != (rc = i2c_master_send(c,&buffer[0],2)))
240 tuner_warn("i2c i/o error: rc == %d (should be 2)\n",rc);
241 if (2 != (rc = i2c_master_send(c,&buffer[2],2)))
242 tuner_warn("i2c i/o error: rc == %d (should be 2)\n",rc);
243 c->addr = tuneraddr;
Kirk Lapraye976f9372005-11-08 21:37:04 -0800244 /* FIXME: input */
245 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 }
247
Mauro Carvalho Chehab1faf11a2006-01-09 15:25:03 -0200248 /* IFPCoff = Video Intermediate Frequency - Vif:
249 940 =16*58.75 NTSC/J (Japan)
250 732 =16*45.75 M/N STD
251 704 =16*44 ATSC (at DVB code)
252 632 =16*39.50 I U.K.
253 622.4=16*38.90 B/G D/K I, L STD
254 592 =16*37.00 D China
255 590 =16.36.875 B Australia
256 543.2=16*33.95 L' STD
257 171.2=16*10.70 FM Radio (at set_radio_freq)
258 */
259
Hans Verkuila1789d32006-01-09 15:25:19 -0200260 if (t->std == V4L2_STD_NTSC_M_JP) {
Mauro Carvalho Chehab1faf11a2006-01-09 15:25:03 -0200261 IFPCoff = 940;
Hans Verkuila1789d32006-01-09 15:25:19 -0200262 } else if ((t->std & V4L2_STD_MN) &&
263 !(t->std & ~V4L2_STD_MN)) {
Mauro Carvalho Chehab1faf11a2006-01-09 15:25:03 -0200264 IFPCoff = 732;
Hans Verkuila1789d32006-01-09 15:25:19 -0200265 } else if (t->std == V4L2_STD_SECAM_LC) {
Mauro Carvalho Chehab1faf11a2006-01-09 15:25:03 -0200266 IFPCoff = 543;
267 } else {
268 IFPCoff = 623;
269 }
270
Mauro Carvalho Chehab5c07db02006-01-09 15:25:11 -0200271 div=freq + IFPCoff + offset;
Mauro Carvalho Chehabf5b90a22006-01-09 15:25:12 -0200272
273 tuner_dbg("Freq= %d.%02d MHz, V_IF=%d.%02d MHz, Offset=%d.%02d MHz, div=%0d\n",
274 freq / 16, freq % 16 * 100 / 16,
275 IFPCoff / 16, IFPCoff % 16 * 100 / 16,
276 offset / 16, offset % 16 * 100 / 16,
277 div);
278
Hans Verkuil27487d42006-01-15 15:04:52 -0200279 if (tuners[t->type].params->cb_first_if_lower_freq && div < t->last_div) {
Michael Krufky3fc46d32006-01-23 17:11:11 -0200280 buffer[0] = config;
Michael Krufkyab66b222006-01-23 17:11:11 -0200281 buffer[1] = cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 buffer[2] = (div>>8) & 0x7f;
283 buffer[3] = div & 0xff;
284 } else {
285 buffer[0] = (div>>8) & 0x7f;
286 buffer[1] = div & 0xff;
Michael Krufky3fc46d32006-01-23 17:11:11 -0200287 buffer[2] = config;
Michael Krufkyab66b222006-01-23 17:11:11 -0200288 buffer[3] = cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 }
Hans Verkuil27487d42006-01-15 15:04:52 -0200290 t->last_div = div;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 tuner_dbg("tv 0x%02x 0x%02x 0x%02x 0x%02x\n",
292 buffer[0],buffer[1],buffer[2],buffer[3]);
293
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800294 if (4 != (rc = i2c_master_send(c,buffer,4)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 tuner_warn("i2c i/o error: rc == %d (should be 4)\n",rc);
296
297 if (t->type == TUNER_MICROTUNE_4042FI5) {
298 // FIXME - this may also work for other tuners
299 unsigned long timeout = jiffies + msecs_to_jiffies(1);
300 u8 status_byte = 0;
301
302 /* Wait until the PLL locks */
303 for (;;) {
304 if (time_after(jiffies,timeout))
305 return;
306 if (1 != (rc = i2c_master_recv(c,&status_byte,1))) {
307 tuner_warn("i2c i/o read error: rc == %d (should be 1)\n",rc);
308 break;
309 }
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700310 if (status_byte & TUNER_PLL_LOCKED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 break;
312 udelay(10);
313 }
314
315 /* Set the charge pump for optimized phase noise figure */
Michael Krufky3fc46d32006-01-23 17:11:11 -0200316 config &= ~TUNER_CHARGE_PUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 buffer[0] = (div>>8) & 0x7f;
318 buffer[1] = div & 0xff;
Michael Krufky3fc46d32006-01-23 17:11:11 -0200319 buffer[2] = config;
Michael Krufkyab66b222006-01-23 17:11:11 -0200320 buffer[3] = cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 tuner_dbg("tv 0x%02x 0x%02x 0x%02x 0x%02x\n",
322 buffer[0],buffer[1],buffer[2],buffer[3]);
323
324 if (4 != (rc = i2c_master_send(c,buffer,4)))
325 tuner_warn("i2c i/o error: rc == %d (should be 4)\n",rc);
326 }
327}
328
329static void default_set_radio_freq(struct i2c_client *c, unsigned int freq)
330{
331 struct tunertype *tun;
332 struct tuner *t = i2c_get_clientdata(c);
Hans Verkuil27487d42006-01-15 15:04:52 -0200333 u8 buffer[4];
334 u16 div;
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200335 int rc, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700337 tun = &tuners[t->type];
Michael Krufky7b0ac9c2006-01-13 14:10:25 -0200338 j = TUNER_PARAM_ANALOG;
339
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700340 div = (20 * freq / 16000) + (int)(20*10.7); /* IF 10.7 MHz */
Michael Krufky3fc46d32006-01-23 17:11:11 -0200341 buffer[2] = (tun->params[j].ranges[0].config & ~TUNER_RATIO_MASK) | TUNER_RATIO_SELECT_50; /* 50 kHz step */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
343 switch (t->type) {
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700344 case TUNER_TENA_9533_DI:
Mauro Carvalho Chehab391cd722005-06-23 22:02:43 -0700345 case TUNER_YMEC_TVF_5533MF:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700346 tuner_dbg ("This tuner doesn't have FM. Most cards has a TEA5767 for FM\n");
347 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 case TUNER_PHILIPS_FM1216ME_MK3:
349 case TUNER_PHILIPS_FM1236_MK3:
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700350 case TUNER_PHILIPS_FMD1216ME_MK3:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 buffer[3] = 0x19;
352 break;
353 case TUNER_PHILIPS_FM1256_IH3:
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700354 div = (20 * freq) / 16000 + (int)(33.3 * 20); /* IF 33.3 MHz */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 buffer[3] = 0x19;
356 break;
357 case TUNER_LG_PAL_FM:
358 buffer[3] = 0xa5;
359 break;
Mauro Carvalho Chehab33ac6b52005-09-09 13:03:56 -0700360 case TUNER_MICROTUNE_4049FM5:
361 div = (20 * freq) / 16000 + (int)(33.3 * 20); /* IF 33.3 MHz */
362 buffer[3] = 0xa4;
363 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 default:
365 buffer[3] = 0xa4;
366 break;
367 }
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800368 buffer[0] = (div>>8) & 0x7f;
369 buffer[1] = div & 0xff;
Hans Verkuil27487d42006-01-15 15:04:52 -0200370 if (tuners[t->type].params->cb_first_if_lower_freq && div < t->last_div) {
371 buffer[0] = buffer[2];
372 buffer[1] = buffer[3];
373 buffer[2] = (div>>8) & 0x7f;
374 buffer[3] = div & 0xff;
375 } else {
376 buffer[0] = (div>>8) & 0x7f;
377 buffer[1] = div & 0xff;
378 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
380 tuner_dbg("radio 0x%02x 0x%02x 0x%02x 0x%02x\n",
381 buffer[0],buffer[1],buffer[2],buffer[3]);
Hans Verkuil27487d42006-01-15 15:04:52 -0200382 t->last_div = div;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800384 if (4 != (rc = i2c_master_send(c,buffer,4)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 tuner_warn("i2c i/o error: rc == %d (should be 4)\n",rc);
386}
387
388int default_tuner_init(struct i2c_client *c)
389{
390 struct tuner *t = i2c_get_clientdata(c);
391
392 tuner_info("type set to %d (%s)\n",
393 t->type, tuners[t->type].name);
394 strlcpy(c->name, tuners[t->type].name, sizeof(c->name));
395
Hans Verkuil27487d42006-01-15 15:04:52 -0200396 t->set_tv_freq = default_set_tv_freq;
397 t->set_radio_freq = default_set_radio_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 t->has_signal = tuner_signal;
Hans Verkuil27487d42006-01-15 15:04:52 -0200399 t->is_stereo = tuner_stereo;
Mauro Carvalho Chehab793cf9e2005-09-09 13:03:37 -0700400 t->standby = NULL;
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700401
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 return 0;
403}
404
405/*
406 * Overrides for Emacs so that we follow Linus's tabbing style.
407 * ---------------------------------------------------------------------------
408 * Local variables:
409 * c-basic-offset: 8
410 * End:
411 */