summaryrefslogtreecommitdiff
path: root/v4l/ChangeLog
blob: 96d7f5ea09a747919523a625d62673fea40597f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2005-06-06 04:52 mchehab
	* tuner-core.c:
	- temporary debug log removed.

2005-06-06 04:52 mchehab
	* tea5767.c:
	- Implemented status dump information for debug
	- Signal strengh indication corrected
	- Mono/Stereo detection corrected

	* tuner-core.c:
	- Implemented radio stereo indication according w/ V4L and V4L2 API

2005-06-05 17:32 mchehab
	* tea5767.c, Makefile, tuner-core.c, tuner-simple.c, tuner.h:
	- Support for radio chip tea5767hn included.
	- It is used on several TV+FM cards, always at addr I2C 0xC0.

2005-06-05 06:52 mchehab
	* cx88-tvaudio.c, cx88.h:

	- deemphasis code implemented, but not used yet. Has to be defined 
	an API for that.

2005-06-03 18:56  mchehab
	* cx88-cards.c:
	- PV Ultra Pro PCI ID was included by accident. Removed.

	* tuner-simple.c:
	- Ymec chipset now reflects Philips, instead of Temic.		

2005-06-03 14:26  mchehab

	* cx88-cards.c:

	- changed tuner number by it's name as defined on tuner.h.

	* scripts/make_kern_diff.sh

	- now it also makes diff for include files.

2005-06-03 13:36  mchehab
	* cx88-blackbird.c:

	- Blackbird firmware API cleanup, symbolic constants for param values.
	- improved readability and comprehensibility for api calls.

	* cx88-cards.c:

	- PVR2000 & MEC gpio fixes.

	* cx88-tvaudio.c:

	- enable sound input from external adc

	* cx88-video.c:
	- initialize the hue, contrast and brightness controls to default values

	* cx88-mpeg.c:
	- s/cx_write/cx_set for MO_TS_INTMSK, MO_DEV_CNTRL2, MO_TS_DMACNTRL

	Thanks to Catalin Climov <catalin@climov.com>

>>>>>>> 1.19
2005-06-03 12:33  mchehab
	* cx88-cards.c, cx88.h, CARDLIST.cx88, CARDLIST.tuner, tuner-simple.c:

	- DViCO FusionHDTV3 Gold-Q renamed to Gold-T
	- adds (ATSC/NTSC) next to the Thomson DDT 7611 name.
	Thanks to Michael Krufky <mkrufky@m1k.net>.

	
2005-06-01 20:21  mchehab
	* cx88-cards.c:

	- PV Ultra Pro PCI ID was wrong. Removed.

2005-06-01 19:54  nsh
	* scripts/hwdata.pl:
	
	- script for collecting pci data from sources in Linux PCI ID's format

2005-06-01 04:31  mchehab
	* cx88-cards.c:

	- cosmetic changes to reflect pal_m patch applied to -mm series.

2005-06-01 03:32  mchehab
	* scripts/make_kern_diff.sh:

	- new script to check differences between kernel CVS and kernel 2.6

2005-05-30 16:43  mchehab
	* cx88-cards.c:

	- changed tuner number to its corresponding name for PV Ultra Pro.

2005-05-30 16:33  mchehab
	* cx88-cards.c:

	- Included PCI ID 14f1:8800 to CX88_BOARD_PIXELVIEW_PLAYTV_ULTRA_PRO

2005-05-30 02:42  mchehab
	* tuner-core.c, tuner-simple.c, tuner.h:

	- tuner-core changed to support multiple I2C devices
	- has to define CONFIG_TUNER_MULTI_I2C to allow new behavor
	- By default, it uses first I2C device for FM and TV
	- New client control TUNER_SET_ADDR changes I2C addr for FM or TV
	- TVision 5533 MF now uses I2C on 0xC2 for TV and on 0xC0 for radio
	- TVision 5533 MF div now uses only integer arithmetics
	- tuner I2C dettach now generates warn log if failed

2005-05-29 13:38  nshmyrev

	* cx88-cards.c, cx88.h:
	
	Add support for "DViCO - FusionHDTV 3 Gold-Q". Thanks to 
	Michael Krufky <mkrufky@m1k.net>.

2005-05-27 05:45  mchehab

	* tuner-simple.c:

	- Added initial support for Radio tuner for Ymec TVF xxx3 MF
	- Buffer values determinated empirically.
	- There's a hack for selecting I2C bus for Radio (0xC0>>1)

2005-05-25 04:00  nshmyrev

	* bttv-cards.c, bttv.h:
	
	Add support for the Adlink RTV24 capture card. Thanks to Peter
	Skipworth <pskipworth@clarityvi.com>

2005-05-25 02:40  nshmyrev

	* saa7134-vbi.c, saa7134-video.c, saa7134.h:
	
	saa7134 ntsc vbi fix. Patch from mschimek@nusurf.at which is merged to
	kernel -mm tree.

2005-05-25 02:25  kraxel 

	* bttv-i2c.c: Don't try to access the i2c bus if the register wasn't successful.

2005-05-23 23:57  nshmyrev

	* saa7134-cards.c, saa7134-input.c: Add Behold names to Manli
	cards, since they should be identical. Add remote support for
	those card. Thanks to Michael Tokarev <mjt@tls.msk.ru>.

2005-05-23 00:55  nshmyrev

	* cx88-input.c:  
	
	enables the remote control input on the KWorld XPert DVB-T card.
	Thanks to cybercide@f2s.com <cybercide@f2s.com>

2005-05-22 23:50  nshmyrev

	* saa7134-cards.c, saa7134.h, saa7134-input.c:
	
	Update entries for Lifeview Platinum FM, Avermedia 307 Studio,
	Avermedia 307 and Avermedia GO 007 FM

2005-05-22 23:40  nshmyrev

	* ir-common.c:
	
	Update hauppage ir codes

2005-05-22 23:20  nshmyrev

	* tda9887.c, tuner-core.c:
	
	Fix module_param_string argument order

2005-05-22 23:20  nshmyrev

	* bttv-i2c.c, compat.h, cx88-dvb.c, saa6752hs.c:
	* saa7134-core.c, saa7134-empress.c:
	
	Merge changes from 2.6.12 kernel.

2005-05-22 23:06  nshmyrev

	* scripts/cardlist, doc/CARDLIST.bttv, doc/CARDLIST.cx88:
	* doc/CARDLIST.tuner, doc/CARDLIST.saa7134:
	
	Update cardlist script and list of cards

2005-05-18 01:30  mchehab
	* tuner-simple.c, tuner.h:

	- Added support for some  Ymec tuners used on Pixelview Cards.
	- There are some docs about it on http://www.ymec.com.tw/tuner.htm.

2005-05-15 19:07  mchehab
	* scripts/cardlist, doc/CARDLIST.bttv, doc/CARDLIST.cx88,
	  doc/CARDLIST.saa7134, doc/CARDLIST.tuner:

	- scripts/cardlist updated to generate doc/CARDLIST.cx88
	- doc/CARDLIST.xxx updated.

2005-05-15 19:01  mchehab
	* cx88-cards.c, cx88.h, cx88-input.c, ir-common.c, ir-common.h,
	  ir-kbd-gpio.c:
	- Added support for Pixelview Ultra Pro Stereo by Manuel Capinha.

2005-05-15 18:49  mchehab
	* cx88-core.c:
	- Mauro Chehab(mchehab at brturbo.com.br): Added support for PAL-M FSC.

2005-04-26 11:01  kraxel

	* README.patches:

	- update README.patches

2005-04-04 00:14  kraxel

	* README.patches:

	- Final commit: add README.patches

2005-03-10 11:07  kraxel

	* or51132.c:

	- fix from akpm.

2005-03-08 09:38  kraxel

	* tuner-simple.c, tuner.h, tveeprom.c:

	- tuner + tveeprom updates from Jarod Wilson.

2005-03-07 17:10  kraxel

	* cx88-tvaudio.c:

	- cx88: stereo/bilang fix.

2005-03-07 16:58  kraxel

	* cx88-blackbird.c, cx88-dvb.c, cx88-video.c:

	- minor cleanup.

2005-03-07 15:18  kraxel

	* cx88-dvb.c, cx88-mpeg.c:

	- fix cx88-dvb.

2005-03-07 13:01  kraxel

	* cx88-mpeg.c, saa7134-cards.c, saa7134.h, tda8290.c,
	  scripts/update:

	- add flyvideo duo.

2005-03-04 10:34  kraxel

	* cx88-mpeg.c:

	- hopefully fix dvb ts setup.

2005-03-04 10:24  kraxel

	* mt20xx.c, tda8290.c, tuner-simple.c, tveeprom.c:

	- build fixes for older kernels.

2005-03-04 10:12  kraxel

	* cx88-cards.c, cx88-input.c, cx88.h:

	- cx88: add support for IO-DATA BCTV7E.

2005-03-03 16:30  kraxel

	* saa6752hs.c, tuner-simple.c:

	- misc small stuff.

2005-03-02 14:16  kraxel

	* tuner-simple.c:

	- one more tuner fix from Jarod Wilson.

2005-03-01 11:22  kraxel

	* tuner-simple.c, tuner.h, tvaudio.c, tveeprom.c:

	- tuner update (for pvr) from Jarod Wilson.

2005-02-24 14:32  kraxel

	* cx88-video.c, video-buf.c:

	- catch pci_map_sg failure.

2005-02-22 15:06  kraxel

	* bttv-cards.c, bttv.h:

	- Kodicom-4400R support (by William M. Brack).

2005-02-22 13:28  kraxel

	* cx88-input.c, ir-common.c, ir-common.h, ir-kbd-gpio.c:

	- cx88: ir patches from Robert Reid.

2005-02-22 10:56  kraxel

	* cx88-cards.c, cx88-tvaudio.c, or51132.c, saa7134-core.c,
	  tuner-simple.c:

	- misc fixes from various people.
	- make or51132.c compile (not work) on 2.6.10.

2005-02-21 14:57  kraxel

	* Makefile, btcx-risc.c, bttv-cards.c, bttv-driver.c, cx88.h,
	  saa7134-core.c, doc/Cards, scripts/update:

	- add some bttv debug code.

2005-02-18 17:18  kraxel

	* doc/: lifeview.txt, liveview.txt:

	- one more rename *sigh*.

2005-02-18 17:16  kraxel

	* doc/: liveview.txt, saa7134-liveview.txt:

	- rename docfile.

2005-02-18 14:26  kraxel

	* cx88-dvb.c, cx88-mpeg.c, cx88.h, or51132.c, or51132.h:

	- more HD3000 stuff from Rusty Scott.

2005-02-18 13:28  kraxel

	* saa7134-cards.c, saa7134-dvb.c:

	- medion 7134 dvb-t support -- first cut, likely doesn't work yet.

2005-02-17 11:24  kraxel

	* cx88-dvb.c, or51132.c, or51132.h, doc/saa7134-liveview.txt:

	- or51132 update from Rusty Scott, some fixups from me ;)

2005-02-16 14:11  kraxel

	* cx88-blackbird.c, cx88-cards.c, cx88-input.c, cx88.h,
	  ir-common.c, ir-common.h:

	- move some bits from cx88-input to ir-common.
	- blackbird fixes, add new blackbird card.

2005-02-16 13:28  kraxel

	* compat.h:

	- make saa7134 build again on older kernels.

2005-02-16 13:14  kraxel

	* bttv-gpio.c, bttv-i2c.c, bttv.h, bttvp.h:

	- drop unused+obsolete i2c_info code.
	- fix use-after-free bug in bttv-gpio.

2005-02-16 12:18  kraxel

	* bttv-cards.c, cx22702.c:

	- cx22702 fix by Rob Noble.
	- bttv: HD2000 fix by Rusty Scott.

2005-02-15 16:59  kraxel

	* compat.h, cx88-cards.c, cx88-dvb.c, cx88-i2c.c, mt20xx.c,
	  saa7134-core.c, saa7134-video.c, tda8290.c, tuner-core.c,
	  tuner-simple.c, tuner.h, scripts/update:

	- merge some patches from mainline.
	- tuner kernel message fixups.
	- misc.

2005-02-15 12:29  kraxel

	* .bp/2.6/i2c-tuner:

	- more patch build fixups.

2005-02-15 11:51  kraxel

	* bttv-driver.c, compat.h, cx88-mpeg.c, cx88-tvaudio.c,
	  cx88-video.c, .bp/2.6/dvb-cx22702, .bp/2.6/dvb-frontends,
	  .bp/2.6/dvb-mt352, .bp/2.6/dvb-or51132, .bp/2.6/dvb-pll,
	  doc/saa7134-liveview.txt:

	- some powermanagement stuff.
	- misc fixes.
	- fixup patch generation control files.

2005-02-14 17:30  kraxel

	* cx88-cards.c, cx88-tvaudio.c, cx88-video.c, cx88.h,
	  saa7134-cards.c, saa7134.h, tda8290.c, tuner-core.c:

	- cx88: more NICAM stuff.
	- tuner: tda8290 fix.

2005-02-10 13:40  kraxel

	* cx88-tvaudio.c, saa7134-cards.c:

	- more nicam / pal-i stuff from Ian Pickworth.

2005-02-10 12:52  kraxel

	* dvb-pll.c:

	- dtt7610 fix.

2005-02-10 12:43  kraxel

	* cx88-dvb.c, dvb-pll.c, dvb-pll.h, or51132.c, or51132.h,
	  tuner-simple.c:

	- a number of pcHDTV cleanups.

2005-02-10 11:38  kraxel

	* Makefile, cx88-cards.c, cx88-dvb.c, cx88-mpeg.c, msp3400.c,
	  or51132.c, or51132.h, scripts/update:

	- pcHDTV HD3000 support (by Rusty Scott).

2005-02-10 10:24  kraxel

	* tda8290.c, tuner-core.c, tuner.h, scripts/update:

	- some tuner fixups.

2005-02-09 20:27  kraxel

	* cx88-input.c, mt20xx.c, tda8290.c, tuner-core.c, tuner-simple.c,
	  tuner.h:

	- make the new splitted tuner module build.

2005-02-09 16:42  kraxel

	* Makefile, mt20xx.c, saa7134-cards.c, saa7134.h, tda8290.c,
	  tuner-core.c, tuner-simple.c, tuner.c, tuner.h, tveeprom.c:

	- split tuner module into multiple smaller files.

2005-02-09 14:50  kraxel

	* msp3400.c:

	- attempt #1 to fix "simpler" mode (based on patches by Jan Nikitenko).

2005-02-09 13:59  kraxel

	* cx88-cards.c, cx88-mpeg.c, cx88.h, tuner.c:

	- add Hauppauge Roslyn support (Kaustubh Bhalerao).

2005-02-09 09:54  kraxel

	* videodev2.h:

	- fix tyops.

2005-02-04 13:36  kraxel

	* cx22702.c:

	- minor cleanups.

2005-02-04 13:32  kraxel

	* cx22702.c:

	- reorder functions in cx22702.c to cut down the diff size.

2005-02-04 12:42  kraxel

	* cx22702.c, cx22702.h, cx88-cards.c, cx88-dvb.c, cx88.h,
	  tda9887.c, scripts/update:

	- tda9887: rollback secam fixup for now ...

2005-02-03 12:50  kraxel

	* saa7134-cards.c:

	- fix saa7134 cinergy mobile (Hans J. Koch).

2005-02-03 12:45  kraxel

	* tda9887.c:

	- fix tda9887 init order bug.

2005-02-03 11:48  kraxel

	* saa7134-video.c:

	- saa7134: PAL-60 support by Phil Richards.

2005-02-03 11:24  kraxel

	* saa7134-empress.c, saa7134-ts.c, saa7134-video.c:

	- saa7134 ts fixes by Eric Lammerts + /me.

2005-01-31 12:35  kraxel

	* bttv-cards.c, cx88-blackbird.c, cx88-cards.c, cx88-dvb.c,
	  cx88-input.c, cx88-video.c, dvb-pll.c, mt352.c, tveeprom.c:

	- whitespace cleanups.

2005-01-31 12:32  kraxel

	* bttv-cards.c, compat.h, saa7134-core.c:

	- add some defines to compat.h to build again on older kernels.
	- misc fixes.

2005-01-24 18:37  kraxel

	* Make.config, bttv-driver.c, bttv.h, bttvp.h, cx88-cards.c,
	  cx88-tvaudio.c, dvb-pll.c, mt352.c, mt352.h, saa7134-core.c,
	  saa7134-dvb.c, saa7134-i2c.c, scripts/update:

	- sync with 2.6.11-rc2 & latest dvb cvs.
	- misc card-specific tweaks.

2005-01-20 13:54  kraxel

	* cx88-tvaudio.c, cx88-video.c, cx88.h:

	- cx88: pal-i fixes (Ian Pickworth).
	- cx88: nicam-l fixes (Didier Caillaud).
	- cx88: misc minor fixes/cleanups.

2005-01-20 10:54  kraxel

	* mt352.c, .bp/2.6/dvb-frontends, scripts/update:

	- mt352 fixes.

2005-01-19 14:03  kraxel

	* mt352.c:

	- don't poll mt352 so much.

2005-01-19 13:01  kraxel

	* cx88-core.c:

	- audio fifo fixup.

2005-01-17 13:38  kraxel

	* tveeprom.c, scripts/update:

	- fix tveeprom.

2005-01-14 17:40  kraxel

	* mt352.c, saa7134-dvb.c, scripts/update:

	- pinnacle 300i starts working now ...

2005-01-14 14:29  kraxel

	* mt352.c, mt352.h, saa7134-dvb.c, tuner.c, scripts/update:

	- pinnacle 300i starts working a bit.

2005-01-13 18:22  kraxel

	* bttv-cards.c, bttv-vbi.c, cx88-cards.c, cx88.h, msp3400.c,
	  mt352.c, saa7134-cards.c, saa7134-dvb.c, saa7134.h, tda9887.c,
	  tuner.c, tuner.h, tveeprom.c, videodev2.h, doc/Cards,
	  scripts/update:

	- card-specific and other fixes from various people.
	- more pinnacle 300i work (still not functional :-/).

2005-01-11 15:17  kraxel

	* mt352.c, saa7134-cards.c, scripts/update:

	- misc card fixes.

2005-01-07 14:58  kraxel

	* bttv-cards.c, cx88-input.c, tveeprom.c:

	- tveeprom tweaks.
	- keytable for the new hauppauge remotes.

2005-01-07 14:11  kraxel

	* bttv-cards.c, bttv-driver.c, bttv.h, cx88-tvaudio.c,
	  saa7134-tvaudio.c, scripts/update:

	- new bttv card (by Chris Fanning).
	- misc.

2005-01-04 17:31  kraxel

	* Make.config, mt352.c, saa7134-dvb.c, tuner.c, scripts/update:

	- more pinnacle 300i stuff (not working yet).

2005-01-04 14:34  kraxel

	* cx88-core.c, cx88-mpeg.c, cx88-video.c:

	- fix irq initialization order bug.

2005-01-04 13:40  kraxel

	* bttv.h, tvaudio.c, tvaudio.h:

	- tda9320 support by Johnny Casey.

2005-01-03 19:56  kraxel

	* cx88-cards.c, tda9887.c:

	- misc.

2005-01-03 18:56  kraxel

	* cx88-dvb.c:

	- kworld dvb fixes from Roman Petrov.

2005-01-03 18:46  kraxel

	* cx88-cards.c, scripts/update:

	- FUSIONHDTV fix from Christopher Pascoe.

2004-12-17 15:18  kraxel

	* bttv-driver.c, cx88-mpeg.c, cx88-video.c, saa7134-core.c:

	- spinlock init cleanups.

2004-12-17 12:51  kraxel

	* cx88-core.c, msp3400.c, tveeprom.c, .bp/2.6/tveeprom:

	- misc fixes.

2004-12-14 16:33  kraxel

	* Makefile, bttv-cards.c, bttv-i2c.c, bttvp.h, cx88-cards.c,
	  cx88.h, dvb-pll.c, saa7134-cards.c, saa7134.h, tveeprom.c,
	  tveeprom.h, scripts/update:

	- switch over to tveeprom for hauppauge card config.

2004-12-10 13:33  kraxel

	* btcx-risc.c, bttv-cards.c, bttv-driver.c, bttv-i2c.c, bttv-vbi.c,
	  cx88-blackbird.c, cx88-core.c, cx88-i2c.c, cx88-input.c,
	  cx88-mpeg.c, cx88-tvaudio.c, cx88-vbi.c, cx88-video.c, dvb-pll.c,
	  ir-common.c, msp3400.c, mt352.c, saa7134-core.c, saa7134-dvb.c,
	  saa7134-empress.c, saa7134-i2c.c, saa7134-input.c, saa7134-oss.c,
	  saa7134-ts.c, saa7134-tvaudio.c, saa7134-vbi.c, saa7134-video.c,
	  tda9887.c, tvaudio.c, tvmixer.c, v4l1-compat.c, video-buf.c,
	  scripts/update:

	- add moduleparam.h include to many files.
	- some pinnacle 300i progress (can talk to mt352 now, not working yet
	  through).
	- misc minor stuff.

2004-12-09 14:26  kraxel

	* cx22702.c, .bp/2.6/dvb-frontends:

	- drop unused code.

2004-12-09 13:51  kraxel

	* Makefile, bttv-cards.c, cx22702.c, cx22702.h, cx88-cards.c,
	  cx88-dvb.c, cx88.h, dvb-pll.c, dvb-pll.h, ir-kbd-i2c.c,
	  msp3400.c, mt352.c, mt352.h, mt352_priv.h, saa6752hs.c,
	  saa7134-cards.c, saa7134-dvb.c, saa7134-i2c.c, saa7134-video.c,
	  saa7134.h, video-buf-dvb.c, video-buf-dvb.h, scripts/update:

	- work on dvb pll stuff.
	- misc dvb updates.
	- pinnacle 300i stuff (not working yet).

2004-12-07 14:17  kraxel

	* cx88-blackbird.c, cx88-core.c, cx88.h, msp3400.c, tuner.c,
	  .bp/2.6/cx88-update:

	- misc minor stuff.

2004-12-02 15:23  kraxel

	* bttv-driver.c, cx88-blackbird.c, cx88-video.c, saa7134-empress.c,
	  saa7134-video.c, video-buf.c:

	- fix memory leak in drivers.

2004-12-02 14:44  kraxel

	* bttv-cards.c, cx88-blackbird.c, cx88-core.c, cx88.h:

	- attempt to fix cx88 blackbird.
	- fix vbi initialization issue.

2004-12-01 16:10  kraxel

	* cx88-input.c, saa6752hs.c, videodev2.h:

	- mpeg aspect ratio stuff.

2004-11-30 18:00  kraxel

	* cx88-input.c:

	- put new source file into cvs as well ;)

2004-11-30 18:00  kraxel

	* Makefile, cx88-cards.c, cx88-core.c, cx88-dvb.c, cx88-mpeg.c,
	  cx88-vbi.c, cx88-video.c, cx88.h, scripts/update:

	- new cx88-based dvb card by Christopher Pascoe.
	- cx88: IR support by Christopher Pascoe and me.

2004-11-30 12:26  kraxel

	* cx88-cards.c, cx88.h, saa7134-cards.c, saa7134-input.c,
	  saa7134-oss.c, saa7134-tvaudio.c, saa7134.h, tuner.c, tuner.h:

	- add new tuners.
	- ir support for Compro Videomate by Michael Mellor.

2004-11-26 13:59  kraxel

	* saa7134-cards.c, saa7134-core.c:

	- delayed module loading for saa7134.

2004-11-24 12:55  kraxel

	* saa7134-tvaudio.c:

	- empress fixes by Gert Vervoort.

2004-11-23 18:29  kraxel

	* bttvp.h, compat.h, cx88-core.c, cx88.h, saa6752hs.c,
	  saa7134-core.c, saa7134.h:

	- merge iomem annotations from Al Viro.

2004-11-22 19:10  kraxel

	* saa6752hs.c, saa7134-cards.c, saa7134-input.c, saa7134.h,
	  tda9887.c:

	- saa7134: misc card-specific tweaks + new entries.

2004-11-19 19:07  kraxel

	* bttv-cards.c, bttv-driver.c, bttv-i2c.c, bttv-risc.c, bttv.h,
	  bttvp.h, cx88-blackbird.c, cx88-cards.c, cx88-tvaudio.c,
	  cx88-video.c, msp3400.c, saa6752hs.c, saa7134-cards.c,
	  saa7134-core.c, saa7134-empress.c, saa7134-video.c, saa7134.h,
	  tda7432.c, tda9875.c, tvaudio.c, v4l2-common.c, videodev2.h:

	- misc cleanups.
	- blackbird + empress updates.

2004-11-19 13:16  kraxel

	* bttv-cards.c, saa7134-core.c, saa7134-video.c:

	- saa7134: signal detection fixes.

2004-11-18 15:05  kraxel

	* saa6752hs.c, saa7134-cards.c, saa7134-core.c, saa7134-empress.c,
	  saa7134-video.c, saa7134.h, video-buf-dvb.c, videodev2.h:

	- a batch of mpeg2/empress fixes/changes.

2004-11-17 19:47  kraxel

	* bttv-i2c.c, bttv-if.c, cx88-blackbird.c, cx88-cards.c,
	  cx88-core.c, saa7134-cards.c, scripts/update:

	- misc minor cleanups and card-specific fixes.

2004-11-10 12:07  kraxel

	* Makefile, bttv-driver.c, bttv.h, saa6752hs.c, saa6752hs.h,
	  saa7134-cards.c, saa7134-empress.c, saa7134-input.c,
	  saa7134-tvaudio.c, tda9887.c, tuner.c, videodev2.h:

	- lots of empress stuff from Andrew de Quincey + some rewrites from me.
	- misc fixes.

2004-11-09 12:34  kraxel

	* bttv-cards.c, bttv-driver.c, saa7134-cards.c, saa7134-core.c,
	  saa7134-empress.c, tda9887.c, tuner.c, tuner.h, tvaudio.c,
	  tvmixer.c:

	- avermedia fixes (by Nickolay V. Shmyrev).
	- make it build on non-cutting edge kernels (i.e. 2.6.9 ;)
	- convert remaining modules to new-style insmod options.

2004-11-08 11:57  kraxel

	* saa7134-cards.c:

	- saa7134: cardlist update (Michael Rodriguez-Torrent).

2004-11-07 15:44  kraxel

	* bttv-driver.c, cx88-dvb.c, cx88-video.c, saa7134-cards.c,
	  saa7134-core.c, saa7134-dvb.c, saa7134-video.c, video-buf.c:

	- kill obsolete stuff.

2004-11-07 14:17  kraxel

	* btcx-risc.c, bttv-cards.c, bttv-driver.c, bttv-i2c.c, bttv-vbi.c,
	  cx88-blackbird.c, cx88-dvb.c, cx88-vbi.c, cx88-video.c,
	  ir-common.c, saa7134-core.c, saa7134-dvb.c, saa7134-empress.c,
	  saa7134-i2c.c, saa7134-input.c, saa7134-oss.c, saa7134-ts.c,
	  saa7134-tvaudio.c, saa7134-vbi.c, saa7134-video.c, tda9887.c,
	  tuner.c, v4l1-compat.c, video-buf-dvb.c, video-buf-dvb.h,
	  video-buf.c, video-buf.h, scripts/update:

	- yet another video-buf interface change + fixups.
	- move more modules to new-style insmod options.

2004-11-05 10:40  kraxel

	* cx88-dvb.c, saa7134-cards.c:

	- misc.

2004-11-04 12:03  kraxel

	* saa7134-cards.c, saa7134.h:

	- saa7134: added cinergy mobile (thanks to Hans Koch), tuner not
	  working yet through ...

2004-11-03 10:04  kraxel

	* bttv-driver.c, bttv-gpio.c, cx88-cards.c, cx88-dvb.c, cx88.h,
	  ir-kbd-i2c.c, msp3400.c, saa7134-cards.c, saa7134.h:

	- cx88: fix/add dvb cards by Christopher Pascoe
	- saa7134: new card
	- misc minor fixes.

2004-10-27 20:34  kraxel

	* bttv-cards.c, bttv-gpio.c, bttv-i2c.c, videodev.h:

	- drop some old, obsolete code.
	- misc fixes.

2004-10-25 13:51  kraxel

	* cx88-tvaudio.c:

	- cx88 try to make PAL-I sound work.

2004-10-25 13:26  kraxel

	* bttv-cards.c, bttv-driver.c, bttvp.h, cx88-core.c, cx88-mpeg.c,
	  cx88-video.c, cx88.h, ir-kbd-gpio.c, saa7134-cards.c,
	  saa7134-input.c, saa7134.h, tda9887.c, tuner.c,
	  .bp/2.6/saa7134-update, .bp/2.6/video-buf:

	- new saa7134 card by Nickolay V. Shmyrev
	- misc stuff

2004-10-21 14:51  kraxel

	* Makefile, video-buf-dvb.c, .bp/2.6/20_v4l2, .bp/2.6/30_video-buf,
	  .bp/2.6/31_bt832, .bp/2.6/31_i2c, .bp/2.6/31_ir-input,
	  .bp/2.6/31_tuner, .bp/2.6/32_bttv, .bp/2.6/32_bttv-input,
	  .bp/2.6/33_saa7134, .bp/2.6/34_cx22702, .bp/2.6/34_cx88,
	  .bp/2.6/35_documentation:

	- kill old buildpatch files.

2004-10-20 19:44  kraxel

	* Makefile, cx22702.c, cx22702.h, cx88-dvb.c, saa7134-dvb.c,
	  saa7134-empress.c, saa7134.h, video-buf-dvb.c, video-buf-dvb.h:

	- switch over to "frontend refactored" cvs branch.

2004-10-20 11:43  kraxel

	* tuner.c, video-buf-dvb.c:

	- tuner: switch to new module parameters.
	- misc cleanups.

2004-10-19 18:02  kraxel

	* Make.config, Makefile, cx22702.c, cx88-blackbird.c, cx88-cards.c,
	  cx88-dvb.c, cx88-mpeg.c, cx88-video.c, cx88.h, saa7134-cards.c,
	  saa7134-core.c, saa7134-dvb.c, saa7134-empress.c, saa7134-ts.c,
	  saa7134-tvaudio.c, saa7134-video.c, saa7134.h, video-buf-dvb.c,
	  video-buf-dvb.h, scripts/update:

	- saa7134 reorganiation for modular mpeg2 stuff
	- splitted some generic dvb code into the new video-buf-dvb module.

2004-10-15 12:29  kraxel

	* cx88-video.c, msp3400.c, saa7134-tvaudio.c, scripts/update:

	- fix cx88 polling.

2004-10-13 13:28  kraxel

	* .bp/2.6/: bttv-input, bttv-update, cx88-update, dvb-frontends,
	  i2c-bt832, i2c-ir, i2c-misc, i2c-tuner, saa7134-update,
	  v4l-driver-doc, v4l2-api, video-buf:

	- rename generated patches.

2004-10-13 12:38  kraxel

	* audiochip.h, bt832.c, bt832.h, bt848.h, btcx-risc.c,
	  bttv-cards.c, bttv-driver.c, bttv-gpio.c, bttv-i2c.c, bttv-if.c,
	  bttv-risc.c, bttv-vbi.c, bttv.h, bttvp.h, cx22702.c, cx88-alsa.c,
	  cx88-blackbird.c, cx88-cards.c, cx88-core.c, cx88-dvb.c,
	  cx88-i2c.c, cx88-mpeg.c, cx88-reg.h, cx88-tvaudio.c, cx88-vbi.c,
	  cx88-video.c, dpl3518.c, dpl3518.h, ir-common.c, msp3400-old.c,
	  msp3400.c, plx9054.h, rds-saa6588.c, saa6752hs.c, saa6752hs.h,
	  saa7134-cards.c, saa7134-core.c, saa7134-i2c.c, saa7134-input.c,
	  saa7134-oss.c, saa7134-ts.c, saa7134-tvaudio.c, saa7134-vbi.c,
	  saa7134-video.c, saa7134.h, tda7432.c, tda9875.c, tda9887.c,
	  tuner.c, tuner.h, tvaudio.c, tvmixer.c, v4l1-compat.c,
	  v4l2-common.c, video-buf.c, video-buf.h, videodev.h, videodev2.h,
	  scripts/strip-trailing-whitespaces.sh:

	- kill trailing whitespaces.

2004-10-12 19:08  kraxel

	* saa7134-cards.c, saa7134-core.c, saa7134.h, videodev2.h,
	  .bp/2.6/34_cx22702, scripts/update:

	- saa7134: card list updates.
	- some v4l2 mpeg ioctl tweaks.

2004-10-12 09:33  kraxel

	* bttv-driver.c, cx22702.c, cx88-blackbird.c, cx88-cards.c,
	  cx88-core.c, cx88-dvb.c, cx88-mpeg.c, cx88-video.c, cx88.h,
	  tuner.c, scripts/update:

	- more power management stuff.
	- misc fixes.

2004-10-11 16:53  kraxel

	* bttv-driver.c, cx88-blackbird.c, cx88-video.c, saa7134-ts.c,
	  saa7134-video.c, video-buf.c, video-buf.h, scripts/update:

	- fix poll/select oops.

2004-10-11 15:45  kraxel

	* Make.config, bttv-driver.c, cx22702.c, cx88-cards.c, cx88-i2c.c,
	  cx88-tvaudio.c, cx88-vbi.c, cx88-video.c, cx88.h, tuner.c,
	  scripts/update:

	- some powermanagement stuff.
	- misc minor fixes.

2004-10-08 13:22  kraxel

	* bttv-driver.c, msp3400.c, tda9887.c, tuner.c:

	- add suspend support for some i2c modules.

2004-10-07 14:29  kraxel

	* cx88-blackbird.c, cx88-core.c, cx88-dvb.c, cx88-i2c.c,
	  cx88-mpeg.c, cx88-tvaudio.c, cx88-vbi.c, cx88-video.c, msp3400.c,
	  scripts/update:

	- switch msp3400 + cx88 to 2.6-style module parameters.

2004-10-07 13:29  kraxel

	* msp3400-old.c, msp3400.c, scripts/update:

	- created a copy of the current msp3400 module (with 2.4 support).
	- msp3400: 2.6-ified it (use kthread, throw away several ifdefs).
	- msp3400: use a kernel thread for msp34xxg as well, so the std
	           detection runs asyncronly.

2004-10-06 19:30  kraxel

	* bttv-driver.c, bttv-i2c.c, bttv-risc.c, bttv-vbi.c, bttvp.h,
	  cx88-i2c.c, saa7134-i2c.c, scripts/update:

	- bttv: irq fixes.
	- add i2c scans.

2004-10-06 15:45  kraxel

	* bttv-cards.c, cx88-cards.c, cx88-video.c, tda9887.c:

	- cx88: AverTV Studio 303 (M126) fixes.

2004-10-05 14:57  kraxel

	* bttv-i2c.c, compat.h, msp3400.c:

	- misc build fixes.
	- start switching over msp34xx to v4l2.

2004-09-30 16:17  kraxel

	* msp3400.c, saa7134-cards.c:

	- saa7134: cinergy 200 fixes.
	- msp3400: drop dfp register access hooks.

2004-09-30 15:47  kraxel

	* msp3400.c, msp3400.h, tuner.c:

	- tuner: fix entries.
	- msp3400: merge with ivtv -- part one (thanks to David George).

2004-09-30 14:21  kraxel

	* Make.config, Makefile, bttv-driver.c, saa7134-cards.c, saa7134.h:

	- cx88: build dvb stuff only on 2.6.9.
	- saa7134: new card by Michael Rodriguez-Torrent.
	- bttv: remove check for cx88 boards.

2004-09-27 19:15  kraxel

	* cx22702.c, cx88-blackbird.c:

	- blackbird oops fix.

2004-09-23 15:58  kraxel

	* Makefile, bttv-driver.c, bttv-vbi.c, cx22702.c, cx22702.h,
	  cx88-blackbird.c, cx88-cards.c, cx88-dvb.c, cx88-i2c.c,
	  cx88-vbi.c, cx88-video.c, cx88.h, saa7134-ts.c, saa7134-vbi.c,
	  saa7134-video.c, video-buf.c, video-buf.h, scripts/update:

	- make video-bufg don't touch struct file any more, pass through
	  a void ptr instead of a file ptr everythere.
	- add cx22702 fe driver,

2004-09-22 13:47  kraxel

	* bttv-i2c.c, cx88-cards.c, cx88-core.c, msp3400.c,
	  saa7134-tvaudio.c, tda9887.c, tuner.c:

	- misc sleep cleanups.

2004-09-20 19:31  kraxel

	* saa7134.h:

	- fix tyops.

2004-09-20 15:53  kraxel

	* saa7134-cards.c, saa7134-tvaudio.c, saa7134.h, videodev2.h:

	- saa7134: add Compro VideoMate TV Gold+ (Eric Dorland).
	- v4l2: mpeg ioctl tweaks.

2004-09-20 13:53  kraxel

	* cx88-cards.c, cx88.h:

	- cx88: add Provideo PV259 by Steven Myers.

2004-09-20 13:39  kraxel

	* bttv-driver.c, cx88-cards.c, cx88-i2c.c, tuner.c, videodev2.h:

	- bttv: dark red image fixed (thanks to jeremy smith).
	- misc cx88 tweaks.

2004-09-17 13:49  kraxel

	* cx88-tvaudio.c, cx88.h, videodev2.h:

	- cx88: maybe fix nicam + pal-i
	- v4l2: mpeg api first cut

2004-09-16 17:38  kraxel

	* bttv-cards.c, cx88-cards.c, saa7134-tvaudio.c:

	- misc card specific stuff.

2004-09-16 11:06  kraxel

	* scripts/strip-trailing-whitespaces.sh:

	- add script to kill trailing whitespaces in the sources.

2004-09-16 10:43  kraxel

	* bttv-i2c.c:

	- bttv: take care that i2c adapter class is set correctly.

2004-09-16 10:27  kraxel

	* cx88-cards.c:

	- autoload frontends.

2004-09-16 09:05  kraxel

	* bttv-risc.c, cx88-core.c, cx88-i2c.c:

	- bttv: fix planat capture.
	- bttv: add risc buffer size sanity checks.

2004-09-15 18:15  kraxel

	* btcx-risc.c, btcx-risc.h, bttv-cards.c, bttv-driver.c,
	  bttv-gpio.c, bttv-i2c.c, bttv-if.c, bttv-risc.c, bttv-vbi.c,
	  bttv.h, bttvp.h, cx88-cards.c, cx88-core.c, cx88-dvb.c,
	  cx88-i2c.c, cx88-reg.h, cx88-tvaudio.c, cx88-vbi.c, ir-common.c,
	  ir-common.h, ir-kbd-gpio.c, ir-kbd-i2c.c, saa7134-cards.c,
	  saa7134-core.c, saa7134-i2c.c, saa7134-input.c, saa7134-oss.c,
	  saa7134-reg.h, saa7134-ts.c, saa7134-tvaudio.c, saa7134-vbi.c,
	  saa7134-video.c, saa7134.h, video-buf.c, video-buf.h:

	- added a bunch of $Id: ChangeLog,v 1.23 2005/06/06 04:59:29 mchehab Exp $ tags.

2004-09-15 17:35  kraxel

	* bttv-risc.c, cx88-dvb.c, cx88-i2c.c, cx88-mpeg.c, scripts/update:

	- bttv: fix planar capture oops.
	- cx88: make dvb driver quiet.
	- cx88: some i2c init/exit fixes.

2004-09-10 14:13  kraxel

	* tuner.c, tuner.h:

	- add TCL 2002N tuner (Michael T. Dean).

2004-09-10 10:54  kraxel

	* .cvsignore:

	- update .cvsignore for 2.4

2004-09-10 10:50  kraxel

	* compat.h, cx88-blackbird.c, cx88-i2c.c:

	- cx88: i2c fixups.

2004-09-10 10:46  kraxel

	* Make.config, ir-common.h, msp3400.c, tuner.c:

	- fix 2.4 kernel builds.

2004-09-09 16:00  kraxel

	* cx88-blackbird.c:

	- gcc 2.95 build fix.

2004-09-07 16:30  kraxel

	* bttv-cards.c, cx88-cards.c, cx88.h, .bp/2.6/34_cx88:

	- cx88: add connexant dvb reference design by Andrew de Quincey
	- misc fixes.

2004-09-06 15:29  kraxel

	* cx88-dvb.c, saa7134-cards.c, saa7134-input.c:

	- IR remote support for Medion 2819 by Alex
	- more cx88 dvb fixes.

2004-09-06 14:00  kraxel

	* saa7134-core.c:

	- fix saa7134 oops.

2004-09-06 12:40  kraxel

	* cx88-dvb.c, cx88-mpeg.c, cx88.h:

	- cx88: misc dvb tweaks.

2004-09-06 11:25  kraxel

	* bttv-cards.c, bttv.h, cx88-cards.c, cx88.h, saa7134-cards.c:

	- bttv: add DVICO FusionHDTV DVB-T Lite (Christopher Pascoe).
	- cx88: add Hauppuage Nova-T DVB-t (Steve Toth).

2004-09-03 16:54  kraxel

	* bttv-driver.c, cx88-blackbird.c, msp3400.c, saa6752hs.c,
	  saa7134-core.c, saa7134-ts.c, saa7134.h:

	- msleep() cleanups from kernel janitors.

2004-09-03 11:25  kraxel

	* cx88-dvb.c, cx88.h:

	- cx88: minor dvb tweaks.

2004-09-01 21:18  kraxel

	* cx88-core.c:

	- cx88: fix wrapfix.

2004-09-01 21:17  kraxel

	* bttv-cards.c:

	- s/0/NULL/.

2004-08-31 16:46  kraxel

	* cx88-core.c:

	- cx88: make cx88_wakeup() work correctly after waking 2^16 buffers.

2004-08-31 16:08  kraxel

	* cx88-dvb.c, cx88-mpeg.c, cx88.h:

	- cx88: add timeout error counter.

2004-08-31 13:58  kraxel

	* bttv-driver.c, cx88-blackbird.c, cx88-cards.c, cx88-core.c,
	  cx88-dvb.c, cx88-i2c.c, cx88-mpeg.c, cx88-vbi.c, cx88-video.c,
	  cx88.h:

	- cx88: merge dvb patches (by Christopher Pascoe), step one.
	- cx88: added some code lines for error stats.

2004-08-26 12:59  kraxel

	* cx88-cards.c, cx88-tvaudio.c, cx88-video.c, cx88.h, tuner.c,
	  tuner.h:

	- cx88: Dvico FusionHDTV patches by Mac Michaels

2004-08-26 12:03  kraxel

	* doc/hauppauge-wintv-cx88-ir.txt:

	- add hauppauge IR docs.

2004-08-26 12:03  kraxel

	* compat.h:

	- add __user + __kernel #defines for older kernels.

2004-08-25 18:25  kraxel

	* saa7134-oss.c, doc/README.cx88:

	- saa7134: build fix.
	- cx88: doc update.

2004-08-25 17:53  kraxel

	* bttv-cards.c, bttv-driver.c, ir-kbd-gpio.c, ir-kbd-i2c.c,
	  saa7134-core.c, saa7134-oss.c, saa7134-ts.c, saa7134-video.c,
	  tvmixer.c, v4l1-compat.c, video-buf.c, video-buf.h, videodev.h,
	  videodev2.h:

	- merge 2.6.9-rc1 changes (mostly __user stuff).

2004-08-25 16:47  kraxel

	* Makefile, cx88-blackbird.c, cx88-cards.c, cx88-core.c,
	  cx88-dvb.c, cx88-mpeg.c, cx88-tvaudio.c, cx88-vbi.c,
	  cx88-video.c, cx88.h, tuner.c, tuner.h, scripts/update:

	- cx88: plenty of mpeg work.  blackbird might even work with
	  some luck.  dvb needs more work.

2004-08-23 12:43  kraxel

	* saa7134-cards.c, saa7134.h, tuner.c:

	- saa7134: new card by Alain St-Denis

2004-08-23 12:38  kraxel

	* bttv-risc.c, cx88-blackbird.c, cx88-cards.c, cx88.h, tuner.c,
	  tuner.h:

	- some bttv debug code.
	- new tuner type by Michael T. Dean

2004-08-17 13:24  kraxel

	* bttv-cards.c, bttv.h, ir-kbd-gpio.c, tuner.c:

	- bttv card list updates (by Attila Kondoros + others).

2004-08-17 11:19  kraxel

	* bttv-cards.c, bttv-i2c.c, bttv.h:

	- bttv: two new cards by Andre Schwarz
	- bttv: i2c-hw bugfix.

2004-08-16 12:40  kraxel

	* bttv-cards.c:

	- bttv: firmware loader fix by Kenneth Aafløy

2004-07-30 17:26  kraxel

	* cx88-blackbird.c, cx88-mpeg.c, cx88-reg.h:

	- cx88: started going over the blackbird code.

2004-07-30 15:43  kraxel

	* Makefile, bttvp.h, compat.h, cx88-blackbird.c, cx88-core.c,
	  cx88-dvb.c, cx88-mpeg.c, cx88-tvaudio.c, cx88-vbi.c,
	  cx88-video.c, cx88.h, id.h, saa6752hs.c, saa7134.h:

	- cx88: more reorganization + code shuffeling.

2004-07-30 13:14  kraxel

	* cx88-alsa.c, cx88-cards.c, cx88-core.c, cx88-mpeg.c,
	  cx88-video.c, cx88.h:

	- cx88: more reorganization stuff.

2004-07-29 23:35  kraxel

	* Makefile, cx88-alsa.c, cx88-blackbird.c, cx88-cards.c,
	  cx88-core.c, cx88-i2c.c, cx88-mpeg.c, cx88-tvaudio.c, cx88-vbi.c,
	  cx88-video.c, cx88.h, saa7134-core.c, scripts/update:

	- cx88: big code reorganization.
	- cx88: started merging blackbird patches, not working yet.

2004-07-29 14:49  kraxel

	* cx88-cards.c:

	- cx88: enable radio for MSI TV@nywhere master.

2004-07-28 13:32  kraxel

	* bttv-cards.c, tuner.c, tuner.h:

	- tuner: added new type.
	- bttv: added id.

2004-07-23 03:06  kraxel

	* cx88-tvaudio.c, cx88-video.c, cx88.h:

	- add range check for cx88 card= insmod option.
	- make cx88 tvaudio less verbose.

2004-07-22 15:54  kraxel

	* bttv-gpio.c, bttv-i2c.c, bttv.h, bttvp.h, cx88-video.c:

	- saa7134 build fix.
	- bttv i2c attach/detach hook for subdrivers.

2004-07-22 15:34  kraxel

	* cx88-video.c:

	- filter fixes for secam.

2004-07-15 20:29  kraxel

	* bttv-driver.c:

	- bttv: alignment fix.

2004-07-14 14:42  kraxel

	* saa7134-cards.c:

	- saa7134: add some printks with config hints.

2004-07-14 14:25  kraxel

	* saa7134-cards.c, saa7134-oss.c, saa7134-tvaudio.c,
	  saa7134-video.c, saa7134.h:

	- saa7134: drop i2s_rate field + related changes.
	- saa7134: adapt sync_control bits when the signal comes and goes away.

2004-07-08 09:38  kraxel

	* cx88-cards.c, cx88-video.c, saa7134-cards.c:

	- misc fixes.

2004-07-07 16:37  kraxel

	* cx88-cards.c:

	- cx88: ATI TV Wonder Pro tweaks.

2004-07-07 08:42  kraxel

	* cx88-cards.c, cx88-i2c.c, cx88-video.c, cx88.h, saa7134-cards.c,
	  saa7134-core.c, saa7134-i2c.c, saa7134-tvaudio.c,
	  saa7134-video.c, saa7134.h, tda9887.c, tuner.h,
	  doc/CARDLIST.saa7134, doc/Cards:

	- saa7134: add automute option.
	- tda9887: add config i2c command.

2004-07-06 12:26  kraxel

	* cx88-video.c, cx88.h:

	- more secam fixups.

2004-07-06 09:52  kraxel

	* bttv-risc.c:

	- bttv: finetune chroma lines used for yuv planar modes (based on patch
	  by Michael Niedermayer).

2004-06-30 20:30  kraxel

	* saa7134.h:

	- saa7134 build fix.

2004-06-30 17:09  kraxel

	* tda9887.c:

	- add missing break.

2004-06-30 16:46  kraxel

	* bt832.c, ir-kbd-i2c.c, msp3400.c, saa6752hs.c, tda7432.c,
	  tda9875.c, tda9887.c, tuner.c, tvaudio.c, tvmixer.c:

	- batch of triviasl i2c fixes by Arthur Othieno.

2004-06-30 16:40  kraxel

	* saa7134-cards.c:

	- saa7134: initial TerraTec Cinergy 200 TV support by Patrick Grimm.

2004-06-30 16:13  kraxel

	* tda9887.c:

	- tda9887: radio afc support by Robert DeLuca.

2004-06-30 14:20  kraxel

	* cx88-cards.c, cx88.h:

	- oops, tyops.

2004-06-30 14:18  kraxel

	* cx88-cards.c, cx88-video.c, cx88.h:

	- cx88: KWorld DVB-T card entry by Soyeb Aswat

2004-06-29 09:33  kraxel

	* cx88-cards.c, tuner.c:

	- lg tuner fix by Andrzej Stypula.

2004-06-25 13:53  kraxel

	* saa7134-video.c:

	- fix saa7134 radio tuning (thanks to Robert DeLuca).

2004-06-23 16:33  kraxel

	* bttv-cards.c, bttv.h, cx88-video.c, cx88.h, ir-kbd-gpio.c,
	  saa7134-ts.c, tuner.c:

	- misc fixes from various people.

2004-06-09 11:51  kraxel

	* cx88-cards.c:

	- cx88: asus card entry update by Alex Deucher

2004-06-09 11:48  kraxel

	* cx88-cards.c, cx88.h:

	- cx88: MSI TV-@nywhere updates by David Lloyd

2004-06-08 12:19  kraxel

	* bt832.c, bttv-cards.c, bttv-i2c.c, cx88-cards.c, cx88-i2c.c,
	  id.h, msp3400.c, saa6752hs.c, saa7134-i2c.c, tda7432.c,
	  tda9875.c, tda9887.c, tuner.c, tvaudio.c, tvmixer.c:

	- update i2c stuff for the changes in upcoming 2.6.7

2004-06-07 15:22  kraxel

	* bttv-cards.c, bttv.h, cx88-cards.c, cx88.h, ir-kbd-i2c.c:

	- added more cards to cx88 + bttv, this time tried to compile before
	  commit Anja ;)

2004-06-07 13:33  kraxel

	* bttv-cards.c:

	- bttv: add Spirit TV Tuner by Stafford Goodsell

2004-05-28 18:21  kraxel

	* ir-common.h, video-buf.c:

	- userptr fix.
	- add KEY_TEXT define for 2.4.

2004-05-26 16:05  kraxel

	* ir-kbd-gpio.c, saa6752hs.c, saa7134-cards.c, saa7134-ts.c,
	  saa7134.h:

	- saa7134: add Items MuchTV card by Norman Jonas.
	- saa7134: make ts buffer size configurable by Andrew de Quincey.

2004-05-25 11:27  kraxel

	* bttv-cards.c, cx88-cards.c, cx88-video.c, cx88.h:

	- cx88: added Prolink PlayTV PVR by Matheus Izvekov.
	- cx88: kill temporary oops debug code.

2004-05-24 15:24  kraxel

	* cx88-cards.c, cx88.h, ir-common.c:

	- cx88: add IODATA GV-VCP3/PCI by 河村直樹 (Kawamura Naoki).
	- ir-common: update rc5 keytable.

2004-05-24 15:13  kraxel

	* ir-kbd-gpio.c:

	- ir-kbd-gpio: fix winfast2000 keymask (by Torbjörn Jansson).

2004-05-24 14:58  kraxel

	* bttv-cards.c:

	- bttv: modtec tuner detection updated (by Christopher Hill).

2004-05-24 14:57  kraxel

	* cx88-cards.c, cx88-tvaudio.c, cx88-video.c, saa7134-cards.c,
	  saa7134-input.c:

	- added insmod option to disable saa7134 input device.
	- card list updates.
	- cx88 alignment fix.

2004-05-14 12:17  kraxel

	* ir-kbd-gpio.c:

	- avermedia IR fixes (by Tomas Kopal).

2004-05-13 20:44  kraxel

	* saa7134-input.c, saa7134-tvaudio.c, saa7134-video.c:

	- saa7134 audio scan fixes.
	- add insmod option to disable IR support in saa7134.

2004-05-13 19:04  kraxel

	* cx88-video.c, saa7134-ts.c, saa7134-video.c, tda9887.c, tuner.c,
	  .bp/2.4/34_cx88, scripts/update:

	- v4l2 support in tuner + tda9887
	- switch over cx88 + saa7134 to use v4l2 for tuning.
	- misc tweaks.

2004-05-07 11:00  kraxel

	* cx88-vbi.c, cx88-video.c, msp3400.c, tuner.c:

	- fix and enable single field capture in cx88.
	- mt2050 antenna selection, based on patch by Matthias Reichl.
	- msp3400 cleanups by Perry Gilfillan.

2004-04-28 09:56  kraxel

	* bttv-cards.c, cx88-i2c.c, cx88-video.c:

	- add bt878-based dvb card.

2004-04-23 17:44  kraxel

	* cx88-video.c:

	- cx88: minor audio fixes.

2004-04-23 11:21  kraxel

	* cx88-cards.c, cx88-tvaudio.c:

	- cx88: MSI TVanywhere fixes from dscaler via Michal.
	- cx88: fix nicam kernel oops.

2004-04-23 10:54  kraxel

	* tda9887.c:

	- tda9887: enable QSS by default (use qss=0 to disable if needed).

2004-04-23 10:47  kraxel

	* ir-common.h, ir-kbd-i2c.c:

	- ir-kbd-i2c: purpletv ir fixes by 陳王展 (Wang-Chan Chen).

2004-04-23 10:15  kraxel

	* bttv-cards.c, bttv.h:

	- bttv: support for the Picolo Tetra by Eric DEBIEF

2004-04-23 10:08  kraxel

	* saa7134-cards.c, saa7134-input.c:

	- saa7134: IR support for the smarttv by Maciej Zarzycki vel Maczar

2004-04-22 13:06  kraxel

	* cx88-cards.c, cx88-video.c, cx88.h, tda9887.c:

	- cx88: print some help for unknown cards.
	- tda9887: make qss insmod option work for both enable/disable.

2004-04-21 15:56  kraxel

	* Makefile, bttvp.h, cx88.h, saa7134.h, scripts/release.sh:

	- bumb versions for release.

2004-04-21 13:31  kraxel

	* saa7134-cards.c:

	- tuner fix.

2004-04-21 10:48  kraxel

	* cx88-tvaudio.c, ir-kbd-i2c.c, saa7134-cards.c, saa7134-core.c,
	  saa7134-input.c, saa7134-video.c, saa7134.h, tda9887.c:

	- saa7134: new card entry (by m8923014@msg.ndhu.edu.tw).
	- ir-kbd-i2c: new remote (also m8923014@msg.ndhu.edu.tw).

2004-04-19 18:37  kraxel

	* bttv-driver.c, cx88-cards.c, cx88-tvaudio.c, ir-kbd-gpio.c,
	  saa7134-cards.c, saa7134-input.c, saa7134.h, tuner.c,
	  video-buf.c, .bp/2.6/31_i2c, .bp/2.6/31_tuner:

	- cx88: some btsc-sap bits (not enabled yet).
	- saa7134: new entry for the avermedia 305.
	- misc fixes.

2004-04-15 12:41  kraxel

	* cx88-video.c:

	- cx88: reverse volume control scale (high values == loud).

2004-04-15 12:33  kraxel

	* .cvsignore, cx88-tvaudio.c, cx88-video.c, cx88.h:

	- add audio status monitoring thread to cx88.

2004-04-14 13:19  kraxel

	* cx88-video.c, saa7134-oss.c, tda9887.c, video-buf.c, videodev2.h:

	- cx88/tda9887: secam fixes.
	- video-buf: add sanity checks (thanks to Laurent Pinchart).
	- saa7133: fix off-by-one bug for oss sound recording.

2004-04-13 19:00  kraxel

	* bttv-driver.c, bttv-risc.c, bttv-vbi.c, bttvp.h, saa7134-cards.c,
	  saa7134-oss.c, saa7134-tvaudio.c, saa7134.h:

	- bttv: splitted video + vbi buffer switching, that should make bttv
	  less sensitive to IRQ latencies.
	- saa7134: new card added, minor saa7133 fixes (by toshii@netbsd.org).

2004-04-13 14:47  kraxel

	* cx88-reg.h, cx88-tvaudio.c, saa7134-cards.c:

	- cx88: some tvaudio code from dscaler cvs (btsc + nicam).

2004-04-13 13:59  kraxel

	* bttv-cards.c, cx88-cards.c, tda9887.c:

	- tda9887: secam-dk support
	- cx88: new pci subsystem id for cx88-cards.c
	- bt878: pinnacle/rave radio fix

2004-04-08 14:45  kraxel

	* cx88-video.c:

	- fix cx88 CrCb swapping (credits go to alsa@slackware.ru).

2004-04-08 11:03  kraxel

	* cx88-tvaudio.c, saa7134-video.c:

	- cx88: more PAL-DK fixes.

2004-04-08 10:14  kraxel

	* cx88-tvaudio.c, saa7134-tvaudio.c, doc/CARDLIST.saa7134:

	- cx88: fix PAL-DK fm/stereo.
	- misc.

2004-04-06 17:58  kraxel

	* saa7134-cards.c:

	- add saa7134 asus inputs (by Martin Hicks).

2004-04-06 17:42  kraxel

	* saa7134-tvaudio.c:

	- add retry loop for carrier scan.

2004-04-06 17:36  kraxel

	* cx88-video.c:

	- fix cx88 svideo.

2004-04-06 17:24  kraxel

	* tda9887.c, tuner.c, videodev2.h, scripts/update:

	- major rewrite of the tda9887 module.
	- start switching over tuner + tda9887 to v4l2.

2004-04-06 15:19  kraxel

	* saa7134-cards.c:

	- saa7134 card list fixes.

2004-04-06 15:19  kraxel

	* video-buf.c:

	- make pci_sync change depend on kernel version.

2004-04-05 18:57  kraxel

	* tda9887.c, scripts/cardlist, scripts/saa7134.pl, scripts/update:

	- added tda9887 debug code.
	- scripts/saa7134.pl fix.

2004-04-05 15:04  kraxel

	* saa7134-cards.c, saa7134-tvaudio.c, videodev2.h:

	- new Bayer image format for v4l2.
	- misc saa7134 fixes.

2004-04-05 10:48  kraxel

	* bttvp.h, cx88.h, saa7134.h, scripts/release.sh (utags:
	  release-20040405):

	- update version numbers for release.

2004-04-05 10:13  kraxel

	* video-buf.c (tags: release-20040405):

	- merge video-buf fix from 2.6.5

2004-04-05 10:09  kraxel

	* ir-common.h (tags: release-20040405):

	- add some KEY_* #defines for 2.4 compatibility.

2004-04-01 13:51  kraxel

	* saa7134-cards.c, saa7134-tvaudio.c (utags: release-20040405):

	- fix tuner for saa7133 asus board.

2004-03-31 22:24  kraxel

	* cx88-cards.c (tags: release-20040405), cx88-video.c (tags:
	  release-20040405), cx88.h, saa7134-cards.c:

	- tda9887 autoload for cx88.

2004-03-31 13:16  kraxel

	* bttv-cards.c (tags: release-20040405), bttv-driver.c (tags:
	  release-20040405), bttv-i2c.c (tags: release-20040405), bttvp.h,
	  saa7134-cards.c:

	- make bttv hw i2c configurable per card, enable for twinhan dst.

2004-03-30 17:59  kraxel

	* bttv-driver.c, cx88-tvaudio.c (tags: release-20040405):

	- fix byte-wide register access in cx88.

2004-03-30 12:32  kraxel

	* cx88-i2c.c (tags: release-20040405):

	- fix buffer overflow in cx8800_i2c_init.

2004-03-30 11:35  kraxel

	* bttv-cards.c:

	- ImageNation PXC200* fixes by Luke Fletcher

2004-03-29 20:28  kraxel

	* cx88-cards.c:

	- tuner added for the cx88 winfast.

2004-03-29 18:41  kraxel

	* ir-kbd-i2c.c (tags: release-20040405):

	- pv951 IR support by Mark Phalan.

2004-03-25 19:23  kraxel

	* cx88-reg.h (tags: release-20040405):

	- fix register #define.

2004-03-25 17:26  kraxel

	* bttv-driver.c:

	- minor vbi fix.
	- add some latency debug code to the bttv irq handler
	  (enable with debug_latency=1).

2004-03-25 15:16  kraxel

	* saa7134-input.c (tags: release-20040405):

	- saa7134 IR updates by Job D. R. Borges

2004-03-25 14:00  kraxel

	* bttv-driver.c, cx88-vbi.c (tags: release-20040405), cx88-video.c,
	  cx88.h, saa7134-core.c (tags: release-20040405):

	- cx88 vbi fixes by Tom Zoerner

2004-03-17 13:18  kraxel

	* saa7134-video.c (tags: release-20040405):

	- fix saa7134 cropping.

2004-03-17 12:31  kraxel

	* bttv-cards.c, cx88-cards.c, cx88-video.c, doc/README.cx88 (tags:
	  release-20040405):

	- bttv card list update.
	- attempt to fix svideo in cx88.
	- documentation update.

2004-03-17 09:13  kraxel

	* cx88-tvaudio.c, cx88-vbi.c, cx88-video.c:

	- misc cx88 fixes.

2004-03-16 13:59  kraxel

	* cx88-tvaudio.c, cx88-video.c, cx88.h:

	- misc.

2004-03-16 13:34  kraxel

	* cx88-cards.c, cx88-tvaudio.c, cx88-video.c, cx88.h, tuner.c
	  (tags: release-20040405), scripts/update (tags:
	  release-20040405):

	- plenty of cx88 audio fixes.
	  * grabbed some A2 code from dscaler cvs.
	  * merged patches by zarquon@earendel.org.
	  * code cleanups.

2004-03-15 13:46  kraxel

	* bttv-cards.c, saa7134-video.c, v4l1-compat.c (tags:
	  release-20040405), videodev2.h (tags: release-20040405):

	- cropcap fixes.
	- v4l1-compat fix.

2004-03-10 12:18  kraxel

	* cx88-cards.c, saa7134-video.c, saa7134.h:

	- crop support for saa7134.

2004-03-08 11:26  kraxel

	* saa7134-oss.c (tags: release-20040405), video-buf.c, video-buf.h
	  (tags: release-20040405):

	- fix saa7134 oss oops.

2004-03-05 16:39  kraxel

	* cx88-cards.c, cx88-i2c.c, cx88-video.c, ir-kbd-gpio.c (tags:
	  release-20040405), saa7134-core.c, saa7134-oss.c, saa7134.h,
	  v4l1-compat.c, video-buf.c, video-buf.h, doc/CARDLIST.bttv (tags:
	  release-20040405), doc/CARDLIST.saa7134 (tags: release-20040405),
	  doc/CARDLIST.tuner (tags: release-20040405), doc/README.cx88,
	  scripts/saa7134.pl (tags: release-20040405), scripts/update:

	- more cards supported in ir-kbd-gpio.c
	- add magics to video-buf structs.
	- fix saa7134 oss driver spinlocks.
	- misc minor stuff.

2004-03-01 13:16  kraxel

	* bttv-driver.c, cx88-cards.c:

	- reprogram picture settings after reset.

2004-02-24 20:20  kraxel

	* bttvp.h, cx88.h, saa7134.h, scripts/release.sh:

	- bump version numbers for release.

2004-02-24 19:46  kraxel

	* .bp/2.6/34_cx88 (tags: release-20040405):

	- add cx88-vbi.c to the patchlist.

2004-02-24 19:00  kraxel

	* .cvsignore (tags: release-20040405), .snapshot:

	- delete .snapshot.

2004-02-24 18:59  kraxel

	* .snapshot, bttv-cards.c:

	- one more pinnacle fix (don't load tvaudio).

2004-02-24 00:55  kraxel

	* tuner.c:

	- kill type= insmod option step one: print a warning.

2004-02-24 00:46  kraxel

	* bttv-cards.c:

	- fix bttv 10fc:d018 (I-O Data Co. GV-BCTV5/PCI)
	  Junichi Uekawa <dancer@netfort.gr.jp>

2004-02-24 00:44  kraxel

	* bttv-cards.c:

	-add bttv 153b:ff23 (Terratec TValue Radio)
	 Tobias Diedrich <ranma@gmx.at>

2004-02-23 20:02  kraxel

	* .cvsignore, Makefile (tags: release-20040405), bttv-driver.c:

	- comment bttv irq flags.

2004-02-22 02:59  kraxel

	* audiochip.h (tags: release-20040405), bt832.c (tags:
	  release-20040405), bt832.h (tags: release-20040405), bt848.h
	  (tags: release-20040405), bttv-cards.c, bttv-driver.c, bttv-if.c
	  (tags: release-20040405), bttv.h (tags: release-20040405),
	  bttvp.h, dpl3518.c (tags: release-20040405), dpl3518.h (tags:
	  release-20040405), i2c-compat.h (tags: release-20040405), id.h
	  (tags: release-20040405), msp3400.c (tags: release-20040405),
	  msp3400.h (tags: release-20040405), plx9054.h (tags:
	  release-20040405), tda7432.c (tags: release-20040405), tda9875.c
	  (tags: release-20040405), tda9887.c (tags: release-20040405),
	  tda9887.h (tags: release-20040405), .snapshot, Make.config (tags:
	  release-20040405), Makefile, README (tags: release-20040405),
	  btcx-risc.c (tags: release-20040405), btcx-risc.h (tags:
	  release-20040405), bttv-gpio.c (tags: release-20040405),
	  bttv-i2c.c, bttv-risc.c (tags: release-20040405), bttv-vbi.c
	  (tags: release-20040405), cx88-cards.c, cx88-core.c (tags:
	  release-20040405), cx88-i2c.c, cx88-reg.h, cx88-tvaudio.c,
	  cx88-vbi.c, cx88-video.c, cx88.h, ir-common.c (tags:
	  release-20040405), ir-common.h, ir-kbd-gpio.c, ir-kbd-i2c.c,
	  rds-saa6588.c (tags: release-20040405), saa6752hs.c (tags:
	  release-20040405), saa6752hs.h (tags: release-20040405),
	  saa7134-cards.c, saa7134-core.c, saa7134-i2c.c (tags:
	  release-20040405), saa7134-input.c, saa7134-oss.c, saa7134-reg.h
	  (tags: release-20040405), saa7134-ts.c (tags: release-20040405),
	  saa7134-tvaudio.c, saa7134-vbi.c (tags: release-20040405),
	  saa7134-video.c, saa7134.h, tuner.c, tuner.h (tags:
	  release-20040405), tvaudio.c (tags: release-20040405), tvaudio.h
	  (tags: release-20040405), tvmixer.c (tags: release-20040405),
	  v4l1-compat.c, v4l2-common.c (tags: release-20040405), vbi (tags:
	  release-20040405), video-buf.c, video-buf.h, videodev.h (tags:
	  release-20040405), videodev2.h, .bp/2.4/20_v4l2 (tags:
	  release-20040405), .bp/2.4/30_video-buf (tags: release-20040405),
	  .bp/2.4/31_bt832 (tags: release-20040405), .bp/2.4/31_i2c (tags:
	  release-20040405), .bp/2.4/31_ir-input (tags: release-20040405),
	  .bp/2.4/31_tuner (tags: release-20040405), .bp/2.4/32_bttv (tags:
	  release-20040405), .bp/2.4/33_saa7134 (tags: release-20040405),
	  .bp/2.4/35_documentation (tags: release-20040405),
	  .bp/2.6/20_v4l2 (tags: release-20040405), .bp/2.6/30_video-buf
	  (tags: release-20040405), .bp/2.6/31_bt832 (tags:
	  release-20040405), .bp/2.6/31_i2c (tags: release-20040405),
	  .bp/2.6/31_ir-input (tags: release-20040405), .bp/2.6/31_tuner
	  (tags: release-20040405), .bp/2.6/32_bttv (tags:
	  release-20040405), .bp/2.6/32_bttv-input (tags:
	  release-20040405), .bp/2.6/33_saa7134 (tags: release-20040405),
	  .bp/2.6/34_cx88, .bp/2.6/35_documentation (tags:
	  release-20040405), doc/CARDLIST.bttv, doc/CARDLIST.saa7134,
	  doc/CARDLIST.tuner, doc/Cards (tags: release-20040405),
	  doc/MAKEDEV (tags: release-20040405), doc/README.bttv (tags:
	  release-20040405), doc/README.cx88, doc/README.saa7134 (tags:
	  release-20040405), doc/Sound-FAQ (tags: release-20040405),
	  doc/Tuners (tags: release-20040405), doc/README.ir (tags:
	  release-20040405), doc/insmod-options (tags: release-20040405),
	  doc/not-in-cx2388x-datasheet.txt (tags: release-20040405),
	  scripts/cardlist (tags: release-20040405), scripts/config.bttv
	  (tags: release-20040405), scripts/config.cx88 (tags:
	  release-20040405), scripts/config.saa7134 (tags:
	  release-20040405), scripts/modules.sh (tags: release-20040405),
	  scripts/release.sh, scripts/saa7134.pl, scripts/update (utags:
	  start):

	- import video4linux drivers.

2004-02-22 02:59  kraxel

	* audiochip.h, bt832.c, bt832.h, bt848.h, bttv-cards.c,
	  bttv-driver.c, bttv-if.c, bttv.h, bttvp.h, dpl3518.c, dpl3518.h,
	  i2c-compat.h, id.h, msp3400.c, msp3400.h, plx9054.h, tda7432.c,
	  tda9875.c, tda9887.c, tda9887.h, .snapshot, Make.config,
	  Makefile, README, btcx-risc.c, btcx-risc.h, bttv-gpio.c,
	  bttv-i2c.c, bttv-risc.c, bttv-vbi.c, cx88-cards.c, cx88-core.c,
	  cx88-i2c.c, cx88-reg.h, cx88-tvaudio.c, cx88-vbi.c, cx88-video.c,
	  cx88.h, ir-common.c, ir-common.h, ir-kbd-gpio.c, ir-kbd-i2c.c,
	  rds-saa6588.c, saa6752hs.c, saa6752hs.h, saa7134-cards.c,
	  saa7134-core.c, saa7134-i2c.c, saa7134-input.c, saa7134-oss.c,
	  saa7134-reg.h, saa7134-ts.c, saa7134-tvaudio.c, saa7134-vbi.c,
	  saa7134-video.c, saa7134.h, tuner.c, tuner.h, tvaudio.c,
	  tvaudio.h, tvmixer.c, v4l1-compat.c, v4l2-common.c, vbi,
	  video-buf.c, video-buf.h, videodev.h, videodev2.h,
	  .bp/2.4/20_v4l2, .bp/2.4/30_video-buf, .bp/2.4/31_bt832,
	  .bp/2.4/31_i2c, .bp/2.4/31_ir-input, .bp/2.4/31_tuner,
	  .bp/2.4/32_bttv, .bp/2.4/33_saa7134, .bp/2.4/35_documentation,
	  .bp/2.6/20_v4l2, .bp/2.6/30_video-buf, .bp/2.6/31_bt832,
	  .bp/2.6/31_i2c, .bp/2.6/31_ir-input, .bp/2.6/31_tuner,
	  .bp/2.6/32_bttv, .bp/2.6/32_bttv-input, .bp/2.6/33_saa7134,
	  .bp/2.6/34_cx88, .bp/2.6/35_documentation, doc/CARDLIST.bttv,
	  doc/CARDLIST.saa7134, doc/CARDLIST.tuner, doc/Cards, doc/MAKEDEV,
	  doc/README.bttv, doc/README.cx88, doc/README.saa7134,
	  doc/Sound-FAQ, doc/Tuners, doc/README.ir, doc/insmod-options,
	  doc/not-in-cx2388x-datasheet.txt, scripts/cardlist,
	  scripts/config.bttv, scripts/config.cx88, scripts/config.saa7134,
	  scripts/modules.sh, scripts/release.sh, scripts/saa7134.pl,
	  scripts/update:

	Initial revision