setup.c (e4da3fbfbd1de56d2367653e3823e6445e49f8a9) setup.c (8b5690f8847490c1e3ea47266819833a13621253)
1/*
2 * System-specific setup, especially interrupts.
3 *
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file "COPYING" in the main directory of this archive
6 * for more details.
7 *
8 * Copyright (C) 1998 Harald Koerfgen

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

105};
106static struct irqaction fpuirq = {
107 .handler = no_action,
108 .name = "fpu",
109 .flags = IRQF_NO_THREAD,
110};
111
112static struct irqaction busirq = {
1/*
2 * System-specific setup, especially interrupts.
3 *
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file "COPYING" in the main directory of this archive
6 * for more details.
7 *
8 * Copyright (C) 1998 Harald Koerfgen

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

105};
106static struct irqaction fpuirq = {
107 .handler = no_action,
108 .name = "fpu",
109 .flags = IRQF_NO_THREAD,
110};
111
112static struct irqaction busirq = {
113 .flags = IRQF_DISABLED,
114 .name = "bus error",
115 .flags = IRQF_NO_THREAD,
116};
117
118static struct irqaction haltirq = {
119 .handler = dec_intr_halt,
120 .name = "halt",
121 .flags = IRQF_NO_THREAD,

--- 651 unchanged lines hidden ---
113 .name = "bus error",
114 .flags = IRQF_NO_THREAD,
115};
116
117static struct irqaction haltirq = {
118 .handler = dec_intr_halt,
119 .name = "halt",
120 .flags = IRQF_NO_THREAD,

--- 651 unchanged lines hidden ---