Deleted Added
full compact
bktr_tuner.c (140655) bktr_tuner.c (146734)
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_tuner.c 140655 2005-01-23 07:13:09Z julian $");
35__FBSDID("$FreeBSD: head/sys/dev/bktr/bktr_tuner.c 146734 2005-05-29 04:42:30Z nyan $");
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_tuner : This deals with controlling the tuner fitted to TV cards.

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

56#include <pci/pcivar.h>
57#else
58#include <sys/lock.h>
59#include <sys/mutex.h>
60#include <sys/selinfo.h>
61#include <dev/pci/pcivar.h>
62#endif
63
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_tuner : This deals with controlling the tuner fitted to TV cards.

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

56#include <pci/pcivar.h>
57#else
58#include <sys/lock.h>
59#include <sys/mutex.h>
60#include <sys/selinfo.h>
61#include <dev/pci/pcivar.h>
62#endif
63
64#include <machine/bus_memio.h> /* for bus space */
65#include <machine/bus.h>
66#include <sys/bus.h>
67#endif
68
69#ifdef __NetBSD__
70#include <dev/ic/bt8xx.h> /* NetBSD .h file location */
71#include <dev/pci/bktr/bktr_reg.h>
72#include <dev/pci/bktr/bktr_tuner.h>

--- 1345 unchanged lines hidden ---
64#include <machine/bus.h>
65#include <sys/bus.h>
66#endif
67
68#ifdef __NetBSD__
69#include <dev/ic/bt8xx.h> /* NetBSD .h file location */
70#include <dev/pci/bktr/bktr_reg.h>
71#include <dev/pci/bktr/bktr_tuner.h>

--- 1345 unchanged lines hidden ---