From 2fb1d088c55b9d3ba268899743d476af456bec0c Mon Sep 17 00:00:00 2001 From: augustss Date: Wed, 30 Apr 1997 02:08:12 +0000 Subject: [PATCH] XXX Pretend that all SB cards are of model 1. XXX This way you can at least use SB cards until the real fixes go in. --- sys/dev/isa/sbdsp.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sys/dev/isa/sbdsp.c b/sys/dev/isa/sbdsp.c index ea3540505586..55d26f0efea1 100644 --- a/sys/dev/isa/sbdsp.c +++ b/sys/dev/isa/sbdsp.c @@ -1,4 +1,4 @@ -/* $NetBSD: sbdsp.c,v 1.41 1997/04/29 21:01:41 augustss Exp $ */ +/* $NetBSD: sbdsp.c,v 1.42 1997/04/30 02:08:12 augustss Exp $ */ /* * Copyright (c) 1991-1993 Regents of the University of California. @@ -179,6 +179,8 @@ sbdsp_probe(sc) sc->sc_model = sbversion(sc); } + sc->sc_model = 0x100; /* XXX pretend to be just a tired old SB XXX */ + return 1; }