aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/bktr/bktr_card.c
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2003-08-24 17:55:58 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2003-08-24 17:55:58 +0000
commitaad970f1fee9a2a3e5a0f880be9b87c6193b3bd1 (patch)
tree42e9f25e1409a6eae14564b2dd4cc743ddb1e89f /sys/dev/bktr/bktr_card.c
parent0e9a61d26066fec3c8abc5e5b36039b7ed2db563 (diff)
downloadsrc-aad970f1fee9a2a3e5a0f880be9b87c6193b3bd1.tar.gz
src-aad970f1fee9a2a3e5a0f880be9b87c6193b3bd1.zip
Use __FBSDID().
Also some minor style cleanups.
Notes
Notes: svn path=/head/; revision=119418
Diffstat (limited to 'sys/dev/bktr/bktr_card.c')
-rw-r--r--sys/dev/bktr/bktr_card.c34
1 files changed, 17 insertions, 17 deletions
diff --git a/sys/dev/bktr/bktr_card.c b/sys/dev/bktr/bktr_card.c
index fdae22ef8c9b..337d952478ef 100644
--- a/sys/dev/bktr/bktr_card.c
+++ b/sys/dev/bktr/bktr_card.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_card : This deals with identifying TV cards.
- * trying to find the card make and model of card.
- * trying to find the type of tuner fitted.
- * reading the configuration EEPROM.
- * locating i2c devices.
- *
- */
-
-/*
+/*-
* 1. Redistributions of source code must retain the
* Copyright (c) 1997 Amancio Hasty, 1999 Roger Hardiman
* All rights reserved.
@@ -47,6 +31,22 @@
* 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_card : This deals with identifying TV cards.
+ * trying to find the card make and model of card.
+ * trying to find the type of tuner fitted.
+ * reading the configuration EEPROM.
+ * locating i2c devices.
+ */
+
#include "opt_bktr.h" /* Include any kernel config options */
#include <sys/param.h>