Changeset View
Changeset View
Standalone View
Standalone View
sys/isa/isa_common.h
| Show First 20 Lines • Show All 66 Lines • ▼ Show 20 Lines | |||||
| /* | /* | ||||
| * These functions are architecture dependent. | * These functions are architecture dependent. | ||||
| */ | */ | ||||
| extern void isa_init(device_t dev); | extern void isa_init(device_t dev); | ||||
| extern struct resource *isa_alloc_resource(device_t bus, device_t child, | extern struct resource *isa_alloc_resource(device_t bus, device_t child, | ||||
| int type, int *rid, rman_res_t start, rman_res_t end, rman_res_t count, | int type, int *rid, rman_res_t start, rman_res_t end, rman_res_t count, | ||||
| u_int flags); | u_int flags); | ||||
| extern int isa_release_resource(device_t bus, device_t child, | extern int isa_release_resource(device_t bus, device_t child, | ||||
| int type, int rid, struct resource *r); | struct resource *r); | ||||
| extern driver_t isa_driver; | extern driver_t isa_driver; | ||||