From b16b8de052931a94620af12f55fb43f453cd5045 Mon Sep 17 00:00:00 2001 From: pk Date: Mon, 12 Apr 1999 23:01:00 +0000 Subject: [PATCH] Identify ourselves as a SCSI channel to the DMA chip. --- sys/arch/sparc/dev/dma_obio.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sys/arch/sparc/dev/dma_obio.c b/sys/arch/sparc/dev/dma_obio.c index c0a81b3e03f6..98b1a57f7f90 100644 --- a/sys/arch/sparc/dev/dma_obio.c +++ b/sys/arch/sparc/dev/dma_obio.c @@ -1,4 +1,4 @@ -/* $NetBSD: dma_obio.c,v 1.2 1998/08/29 21:43:46 pk Exp $ */ +/* $NetBSD: dma_obio.c,v 1.3 1999/04/12 23:01:00 pk Exp $ */ /*- * Copyright (c) 1998 The NetBSD Foundation, Inc. @@ -101,5 +101,7 @@ dmaattach_obio(parent, self, aux) return; } + /* Any point in setting `sc_burst' to anything here? */ + sc->sc_channel = L64854_CHANNEL_SCSI; lsi64854_attach(sc); }