Deleted Added
full compact
bktr_card.c (123291) bktr_card.c (133300)
1/*-
2 * 1. Redistributions of source code must retain the
3 * Copyright (c) 1997 Amancio Hasty, 1999 Roger Hardiman
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

--- 18 unchanged lines hidden (view full) ---

27 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
29 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
30 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE.
32 */
33
34#include <sys/cdefs.h>
1/*-
2 * 1. Redistributions of source code must retain the
3 * Copyright (c) 1997 Amancio Hasty, 1999 Roger Hardiman
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

--- 18 unchanged lines hidden (view full) ---

27 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
29 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
30 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE.
32 */
33
34#include <sys/cdefs.h>
35__FBSDID("$FreeBSD: head/sys/dev/bktr/bktr_card.c 123291 2003-12-08 07:59:18Z obrien $");
35__FBSDID("$FreeBSD: head/sys/dev/bktr/bktr_card.c 133300 2004-08-08 01:23:39Z sanpei $");
36
37/*
38 * This is part of the Driver for Video Capture Cards (Frame grabbers)
39 * and TV Tuner cards using the Brooktree Bt848, Bt848A, Bt849A, Bt878, Bt879
40 * chipset.
41 * Copyright Roger Hardiman and Amancio Hasty.
42 *
43 * bktr_card : This deals with identifying TV cards.

--- 307 unchanged lines hidden (view full) ---

351 0,
352 0,
353 0, /* EEProm type */
354 0, /* EEProm size */
355 /* Tuner, Extern, Intern, Mute, Enabled */
356 { 0x10000, 0, 0x10000, 0, 1 }, /* audio MUX values */
357 0x10f00 }, /* GPIO mask */
358
36
37/*
38 * This is part of the Driver for Video Capture Cards (Frame grabbers)
39 * and TV Tuner cards using the Brooktree Bt848, Bt848A, Bt849A, Bt878, Bt879
40 * chipset.
41 * Copyright Roger Hardiman and Amancio Hasty.
42 *
43 * bktr_card : This deals with identifying TV cards.

--- 307 unchanged lines hidden (view full) ---

351 0,
352 0,
353 0, /* EEProm type */
354 0, /* EEProm size */
355 /* Tuner, Extern, Intern, Mute, Enabled */
356 { 0x10000, 0, 0x10000, 0, 1 }, /* audio MUX values */
357 0x10f00 }, /* GPIO mask */
358
359 { CARD_AOPEN_VA1000, /* the card id */
360 "AOpen VA1000", /* the 'name' */
361 NULL, /* the tuner */
362 0, /* the tuner i2c address */
363 0, /* dbx is optional */
364 0,
365 0,
366 0, /* EEProm unknown */
367 0, /* size unknown */
368 { 0x02, 0x00, 0x00, 0x00, 1 }, /* audio MUX values */
369 0x18e0 }, /* GPIO mask */
370
359};
360
361struct bt848_card_sig bt848_card_signature[1]= {
362 /* IMS TURBO TV : card 5 */
363 { 5,9, {00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 02, 00, 00, 00}}
364
365
366};

--- 933 unchanged lines hidden ---
371};
372
373struct bt848_card_sig bt848_card_signature[1]= {
374 /* IMS TURBO TV : card 5 */
375 { 5,9, {00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 02, 00, 00, 00}}
376
377
378};

--- 933 unchanged lines hidden ---