summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sys/arch/sun3/dev/memerr.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/arch/sun3/dev/memerr.c b/sys/arch/sun3/dev/memerr.c
index 212a1f16dd4..ac4ff9f508e 100644
--- a/sys/arch/sun3/dev/memerr.c
+++ b/sys/arch/sun3/dev/memerr.c
@@ -197,13 +197,9 @@ memerr_interrupt(arg)
* not much to be done. Any error is fatal.
*/
if (sc->sc_type == ME_PAR) {
- if (csr & ME_PAR_EMASK) {
- /* true for Sun3/60, probably some others too */
- printf("probably should replace SIMM %d\n",
- pa / 1048576 + 1);
+ if (csr & ME_PAR_EMASK)
/* Parity errors are fatal. */
goto die;
- }
/* The IPEND bit was set, but no error bits. */
goto noerror;
}