isa_common.h (09aafea1c6836ca1eeb8bd739f5420b68d6476e0) | isa_common.h (812fb8f2940d843b74a71afd8525a799ef30dcd6) |
---|---|
1/*- 2 * Copyright (c) 1999 Doug Rabson 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 63 unchanged lines hidden (view full) --- 72/* XXX alphe declares these elsewhere */ 73#ifndef __alpha__ 74extern int isa_setup_intr(device_t bus, device_t child, struct resource *r, 75 int flags, void (*ihand)(void *), void *arg, void **cookiep); 76extern int isa_teardown_intr(device_t bus, device_t child, struct resource *r, 77 void *cookie); 78#endif 79 | 1/*- 2 * Copyright (c) 1999 Doug Rabson 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 63 unchanged lines hidden (view full) --- 72/* XXX alphe declares these elsewhere */ 73#ifndef __alpha__ 74extern int isa_setup_intr(device_t bus, device_t child, struct resource *r, 75 int flags, void (*ihand)(void *), void *arg, void **cookiep); 76extern int isa_teardown_intr(device_t bus, device_t child, struct resource *r, 77 void *cookie); 78#endif 79 |
80extern driver_t isa_driver; 81extern devclass_t isa_devclass; |
|