diff options
author | obrien <obrien@FreeBSD.org> | 2003-08-24 17:55:58 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2003-08-24 17:55:58 +0000 |
commit | c63dab466c1f033b389bd6ea609f595059544212 (patch) | |
tree | 42e9f25e1409a6eae14564b2dd4cc743ddb1e89f /sys/dev/bktr/bktr_os.c | |
parent | fb9845a19e4bbed8172870281b730ff77f07b9be (diff) | |
download | FreeBSD-src-c63dab466c1f033b389bd6ea609f595059544212.zip FreeBSD-src-c63dab466c1f033b389bd6ea609f595059544212.tar.gz |
Use __FBSDID().
Also some minor style cleanups.
Diffstat (limited to 'sys/dev/bktr/bktr_os.c')
-rw-r--r-- | sys/dev/bktr/bktr_os.c | 32 |
1 files changed, 15 insertions, 17 deletions
diff --git a/sys/dev/bktr/bktr_os.c b/sys/dev/bktr/bktr_os.c index 1a7a807..44dce51 100644 --- a/sys/dev/bktr/bktr_os.c +++ b/sys/dev/bktr/bktr_os.c @@ -1,20 +1,4 @@ -/* $FreeBSD$ */ - -/* - * This is part of the Driver for Video Capture Cards (Frame grabbers) - * and TV Tuner cards using the Brooktree Bt848, Bt848A, Bt849A, Bt878, Bt879 - * chipset. - * Copyright Roger Hardiman and Amancio Hasty. - * - * bktr_os : This has all the Operating System dependant code, - * probe/attach and open/close/ioctl/read/mmap - * memory allocation - * PCI bus interfacing - * - * - */ - -/* +/*- * 1. Redistributions of source code must retain the * Copyright (c) 1997 Amancio Hasty, 1999 Roger Hardiman * All rights reserved. @@ -47,6 +31,20 @@ * POSSIBILITY OF SUCH DAMAGE. */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + +/* + * This is part of the Driver for Video Capture Cards (Frame grabbers) + * and TV Tuner cards using the Brooktree Bt848, Bt848A, Bt849A, Bt878, Bt879 + * chipset. + * Copyright Roger Hardiman and Amancio Hasty. + * + * bktr_os : This has all the Operating System dependant code, + * probe/attach and open/close/ioctl/read/mmap + * memory allocation + * PCI bus interfacing + */ #include "opt_bktr.h" /* include any kernel config options */ |