From 96f4400c0c46d7f6578c9a161515295c061534c4 Mon Sep 17 00:00:00 2001 From: drochner Date: Mon, 20 Sep 2004 16:57:27 +0000 Subject: [PATCH] remove an occurence of ISACF_DRQ_DEFAULT where it doesn't belong (I didn't find where this piece of code is made use of, likely stale stuff.) found by Havard Eidnes --- sys/arch/shark/ofw/if_cs_ofisa_machdep.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/arch/shark/ofw/if_cs_ofisa_machdep.c b/sys/arch/shark/ofw/if_cs_ofisa_machdep.c index 963e134b9a14..4e1c5cb380f2 100644 --- a/sys/arch/shark/ofw/if_cs_ofisa_machdep.c +++ b/sys/arch/shark/ofw/if_cs_ofisa_machdep.c @@ -1,4 +1,4 @@ -/* $NetBSD: if_cs_ofisa_machdep.c,v 1.3 2003/07/15 03:36:02 lukem Exp $ */ +/* $NetBSD: if_cs_ofisa_machdep.c,v 1.4 2004/09/20 16:57:27 drochner Exp $ */ /* * Copyright 1998 @@ -38,7 +38,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: if_cs_ofisa_machdep.c,v 1.3 2003/07/15 03:36:02 lukem Exp $"); +__KERNEL_RCSID(0, "$NetBSD: if_cs_ofisa_machdep.c,v 1.4 2004/09/20 16:57:27 drochner Exp $"); #include "opt_compat_old_ofw.h" @@ -174,7 +174,7 @@ cs_ofisa_md_dma_fixup(parent, self, aux, descp, ndescs, ndescsfilled) if (ndescs > 0 && ndescsfilled > 0) { if (OF_getproplen(aa->oba.oba_phandle, "no-dma") >= 0) - descp[0].drq = ISACF_DRQ_DEFAULT; + descp[0].drq = -1; } return (ndescsfilled); }