Remove some extern decls for PCI-specific stuff that are private to

the PCI front-end.
This commit is contained in:
thorpej 2005-06-28 00:32:27 +00:00
parent 6483ec61df
commit 77e4f4547b
2 changed files with 1 additions and 17 deletions

View File

@ -1327,8 +1327,6 @@ struct ahd_pci_identity {
const char *name;
ahd_device_setup_t *setup;
};
extern struct ahd_pci_identity ahd_pci_ident_table [];
extern const u_int ahd_num_pci_devs;
/***************************** VL/EISA Declarations ***************************/
struct aic7770_identity {
@ -1355,12 +1353,6 @@ ahd_unbusy_tcl(struct ahd_softc *ahd, u_int tcl)
ahd_busy_tcl(ahd, tcl, SCB_LIST_NULL);
}
/***************************** PCI Front End *********************************/
const struct ahd_pci_identity *ahd_find_pci_device(pcireg_t, pcireg_t); /*ahd_dev_softc_t);*/
int ahd_pci_config(struct ahd_softc *,
struct ahd_pci_identity *);
int ahd_pci_test_register_access(struct ahd_softc *);
/************************** SCB and SCB queue management **********************/
int ahd_probe_scbs(struct ahd_softc *);
void ahd_qinfifo_requeue_tail(struct ahd_softc *,
@ -1400,7 +1392,6 @@ int ahd_read_flexport(struct ahd_softc *, u_int,
int ahd_wait_flexport(struct ahd_softc *);
/*************************** Interrupt Services *******************************/
int ahd_pci_intr(struct ahd_softc *);
void ahd_clear_intstat(struct ahd_softc *);
void ahd_flush_qoutfifo(struct ahd_softc *);
void ahd_run_qoutfifo(struct ahd_softc *);

View File

@ -37,7 +37,7 @@
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGES.
*
* $Id: aic7xxxvar.h,v 1.48 2005/05/30 04:43:46 christos Exp $
* $Id: aic7xxxvar.h,v 1.49 2005/06/28 00:32:28 thorpej Exp $
*
* $FreeBSD: /repoman/r/ncvs/src/sys/dev/aic7xxx/aic7xxx.h,v 1.44 2003/01/20 20:44:55 gibbs Exp $
*/
@ -1254,12 +1254,6 @@ u_int ahc_index_busy_tcl(struct ahc_softc *, u_int);
void ahc_unbusy_tcl(struct ahc_softc *, u_int);
void ahc_busy_tcl(struct ahc_softc *, u_int, u_int);
/***************************** PCI Front End *********************************/
const struct ahc_pci_identity *ahc_find_pci_device(pcireg_t, pcireg_t, u_int);
int ahc_pci_config(struct ahc_softc *,
struct ahc_pci_identity *);
int ahc_pci_test_register_access(struct ahc_softc *);
/*************************** EISA/VL Front End ********************************/
struct aic7770_identity *aic7770_find_device(uint32_t);
int aic7770_config(struct ahc_softc *,
@ -1291,7 +1285,6 @@ int ahc_reset(struct ahc_softc *);
void ahc_shutdown(void *);
/*************************** Interrupt Services *******************************/
void ahc_pci_intr(struct ahc_softc *);
void ahc_clear_intstat(struct ahc_softc *);
void ahc_run_qoutfifo(struct ahc_softc *);
#ifdef AHC_TARGET_MODE