Rev 1434 | Rev 1705 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 1434 | Rev 1702 | ||
|---|---|---|---|
| Line 24... | Line 24... | ||
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | */ |
27 | */ |
| 28 | 28 | ||
| - | 29 | /** @addtogroup mips32interrupt mips32 |
|
| - | 30 | * @ingroup interrupt |
|
| - | 31 | * @{ |
|
| - | 32 | */ |
|
| - | 33 | /** @file |
|
| - | 34 | */ |
|
| - | 35 | ||
| 29 | #include <interrupt.h> |
36 | #include <interrupt.h> |
| 30 | #include <arch/interrupt.h> |
37 | #include <arch/interrupt.h> |
| 31 | #include <arch/types.h> |
38 | #include <arch/types.h> |
| 32 | #include <arch.h> |
39 | #include <arch.h> |
| 33 | #include <arch/cp0.h> |
40 | #include <arch/cp0.h> |
| Line 132... | Line 139... | ||
| 132 | /* Swint0, Swint1 are already handled */ |
139 | /* Swint0, Swint1 are already handled */ |
| 133 | if (irq == TIMER_IRQ || irq < 2) |
140 | if (irq == TIMER_IRQ || irq < 2) |
| 134 | return; |
141 | return; |
| 135 | int_register(irq, "ipc_int", ipc_int); |
142 | int_register(irq, "ipc_int", ipc_int); |
| 136 | } |
143 | } |
| - | 144 | ||
| - | 145 | /** @} |
|
| - | 146 | */ |
|
| - | 147 | ||