New file for pccard driver interface declarations.
This commit is contained in:
parent
d9c15605e3
commit
63136e04c6
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=12449
22
sys/pccard/driver.h
Normal file
22
sys/pccard/driver.h
Normal file
@ -0,0 +1,22 @@
|
||||
/*-
|
||||
* pccard driver interface.
|
||||
* Bruce Evans, November 1995.
|
||||
* This file is in the public domain.
|
||||
*/
|
||||
|
||||
#ifndef _PCCARD_DRIVER_H_
|
||||
#define _PCCARD_DRIVER_H_
|
||||
|
||||
struct lkm_table;
|
||||
struct pccard_drv;
|
||||
|
||||
void pccard_add_driver __P((struct pccard_drv *));
|
||||
#ifdef _I386_ISA_ISA_DEVICE_H_ /* XXX actually if inthand2_t is declared */
|
||||
int pccard_alloc_intr __P((int imask, inthand2_t *hand, int unit,
|
||||
int *maskp));
|
||||
#endif
|
||||
void pccard_configure __P((void));
|
||||
void pccard_remove_driver __P((struct pccard_drv *dp));
|
||||
int pcic_probe __P((void)); /* XXX should be linker set */
|
||||
|
||||
#endif /* !_PCCARD_DRIVER_H_ */
|
Loading…
Reference in New Issue
Block a user