Deleted Added
full compact
subr_autoconf.c (60833) subr_autoconf.c (60938)
1/*
2 * Copyright (c) 1992, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This software was developed by the Computer Systems Engineering group
6 * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
7 * contributed to Berkeley.
8 *

--- 27 unchanged lines hidden (view full) ---

36 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
37 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
38 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
39 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
40 * SUCH DAMAGE.
41 *
42 * @(#)subr_autoconf.c 8.1 (Berkeley) 6/10/93
43 *
1/*
2 * Copyright (c) 1992, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This software was developed by the Computer Systems Engineering group
6 * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
7 * contributed to Berkeley.
8 *

--- 27 unchanged lines hidden (view full) ---

36 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
37 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
38 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
39 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
40 * SUCH DAMAGE.
41 *
42 * @(#)subr_autoconf.c 8.1 (Berkeley) 6/10/93
43 *
44 * $FreeBSD: head/sys/kern/subr_autoconf.c 60833 2000-05-23 20:41:01Z jake $
44 * $FreeBSD: head/sys/kern/subr_autoconf.c 60938 2000-05-26 02:09:24Z jake $
45 */
46
47#include <sys/param.h>
48#include <sys/kernel.h>
49#include <sys/systm.h>
50
51/*
52 * Autoconfiguration subroutines.
53 */
54
55/*
56 * "Interrupt driven config" functions.
57 */
45 */
46
47#include <sys/param.h>
48#include <sys/kernel.h>
49#include <sys/systm.h>
50
51/*
52 * Autoconfiguration subroutines.
53 */
54
55/*
56 * "Interrupt driven config" functions.
57 */
58static TAILQ_HEAD(, struct intr_config_hook) intr_config_hook_list =
58static TAILQ_HEAD(, intr_config_hook) intr_config_hook_list =
59 TAILQ_HEAD_INITIALIZER(intr_config_hook_list);
60
61
62/* ARGSUSED */
63static void run_interrupt_driven_config_hooks __P((void *dummy));
64static void
65run_interrupt_driven_config_hooks(dummy)
66 void *dummy;

--- 64 unchanged lines hidden ---
59 TAILQ_HEAD_INITIALIZER(intr_config_hook_list);
60
61
62/* ARGSUSED */
63static void run_interrupt_driven_config_hooks __P((void *dummy));
64static void
65run_interrupt_driven_config_hooks(dummy)
66 void *dummy;

--- 64 unchanged lines hidden ---