diff options
author | julian <julian@FreeBSD.org> | 2004-12-17 00:25:56 +0000 |
---|---|---|
committer | julian <julian@FreeBSD.org> | 2004-12-17 00:25:56 +0000 |
commit | a063053802fc15bd7bc5ca28aa68e35093efb736 (patch) | |
tree | 2db0903be9b24eaa0edf81c2bcaa906a93922b24 | |
parent | 900b64f296dbe0c12df0a825ca652e316431a623 (diff) | |
download | FreeBSD-src-a063053802fc15bd7bc5ca28aa68e35093efb736.zip FreeBSD-src-a063053802fc15bd7bc5ca28aa68e35093efb736.tar.gz |
Add a missing prototype.
MFC after: 1 week
-rw-r--r-- | sys/dev/bktr/bktr_tuner.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/bktr/bktr_tuner.h b/sys/dev/bktr/bktr_tuner.h index 5674e7f..338d116 100644 --- a/sys/dev/bktr/bktr_tuner.h +++ b/sys/dev/bktr/bktr_tuner.h @@ -71,7 +71,6 @@ */ void select_tuner( bktr_ptr_t bktr, int tuner_type ); - /* * The Channel Set maps TV channels eg Ch 36, Ch 51, onto frequencies * and is country specific. @@ -93,6 +92,7 @@ int get_tuner_status( bktr_ptr_t bktr ); int do_afc( bktr_ptr_t bktr, int addr, int frequency ); #endif /* TUNER_AFC */ +int TDA9887_init(bktr_ptr_t bktr, int output2_enable); /* * This is for start-up convenience only, NOT mandatory. @@ -101,4 +101,3 @@ int do_afc( bktr_ptr_t bktr, int addr, int frequency ); #define DEFAULT_CHNLSET CHNLSET_WEUROPE #endif - |