Now that the interrupt bug on the 7043-140 is fixed, it also fixes the

long standing issue with interrupts onthe PowerStack E1.  Remove the
quirk entry for the PowerStack E1 and revert to using the IVR.
Also, add a \n to the attachment of the mk clock printf that was missing.
This commit is contained in:
garbled 2006-09-07 20:13:05 +00:00
parent 50c16ab16f
commit 9f65f017a3
2 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: nvram_pnpbus.c,v 1.3 2006/06/15 18:15:32 garbled Exp $ */
/* $NetBSD: nvram_pnpbus.c,v 1.4 2006/09/07 20:13:05 garbled Exp $ */
/*-
* Copyright (c) 2006 The NetBSD Foundation, Inc.
@ -37,7 +37,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: nvram_pnpbus.c,v 1.3 2006/06/15 18:15:32 garbled Exp $");
__KERNEL_RCSID(0, "$NetBSD: nvram_pnpbus.c,v 1.4 2006/09/07 20:13:05 garbled Exp $");
#include <sys/types.h>
#include <sys/param.h>
@ -204,6 +204,7 @@ nvram_pnpbus_attach(struct device *parent, struct device *self, void *aux)
aprint_normal("%s: attaching clock", device_xname(self));
mk48txx_attach((struct mk48txx_softc *)&sc->sc_mksc);
aprint_normal("\n");
todr_attach(&sc->sc_mksc.sc_handle);
}

View File

@ -1,4 +1,4 @@
/* $NetBSD: platform.c,v 1.21 2006/07/12 21:28:33 garbled Exp $ */
/* $NetBSD: platform.c,v 1.22 2006/09/07 20:13:05 garbled Exp $ */
/*-
* Copyright (c) 2001 The NetBSD Foundation, Inc.
@ -37,7 +37,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: platform.c,v 1.21 2006/07/12 21:28:33 garbled Exp $");
__KERNEL_RCSID(0, "$NetBSD: platform.c,v 1.22 2006/09/07 20:13:05 garbled Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -66,7 +66,6 @@ extern void ds1585_reboot(void);
struct platform_quirkdata platform_quirks[] = {
{ "IBM PPS Model 6015", PLAT_QUIRK_INTRFIXUP,
pci_intr_fixup_ibm_6015, NULL, 0 },
{ "(e1)", PLAT_QUIRK_ISA_HANDLER, NULL, NULL, EXT_INTR_I8259 },
{ NULL, 0, NULL, NULL, 0 }
};