It's the gt64120, not the gt62140.

This commit is contained in:
simonb 2002-08-29 08:02:35 +00:00
parent 2f11784ca7
commit 284c3f4875
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: malta_intr.c,v 1.4 2002/07/29 16:21:04 simonb Exp $ */
/* $NetBSD: malta_intr.c,v 1.5 2002/08/29 08:02:35 simonb Exp $ */
/*
* Copyright 2001, 2002 Wasabi Systems, Inc.
@ -281,12 +281,12 @@ evbmips_iointr(uint32_t status, uint32_t cause, uint32_t pc, uint32_t ipending)
{
struct evbmips_intrhand *ih;
/* Check for error interrupts (SMI, GT62140) */
/* Check for error interrupts (SMI, GT64120) */
if (ipending & (MIPS_INT_MASK_1 | MIPS_INT_MASK_3)) {
if (ipending & MIPS_INT_MASK_1)
panic("piix4 SMI interrupt");
if (ipending & MIPS_INT_MASK_3)
panic("gt62140 error interrupt");
panic("gt64120 error interrupt");
}
/*