Module Name:    src
Committed By:   christos
Date:           Wed Oct 16 19:32:30 UTC 2013

Modified Files:
        src/sys/dev/pci: cs4281.c

Log Message:
use __USE()


To generate a diff of this commit:
cvs rdiff -u -r1.49 -r1.50 src/sys/dev/pci/cs4281.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/pci/cs4281.c
diff -u src/sys/dev/pci/cs4281.c:1.49 src/sys/dev/pci/cs4281.c:1.50
--- src/sys/dev/pci/cs4281.c:1.49	Wed Oct 16 14:18:54 2013
+++ src/sys/dev/pci/cs4281.c	Wed Oct 16 15:32:30 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: cs4281.c,v 1.49 2013/10/16 18:18:54 christos Exp $	*/
+/*	$NetBSD: cs4281.c,v 1.50 2013/10/16 19:32:30 christos Exp $	*/
 
 /*
  * Copyright (c) 2000 Tatoku Ogaito.  All rights reserved.
@@ -43,7 +43,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: cs4281.c,v 1.49 2013/10/16 18:18:54 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cs4281.c,v 1.50 2013/10/16 19:32:30 christos Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -339,8 +339,8 @@ cs4281_intr(void *p)
 	DPRINTF(("intr = 0x%08x, hdsr0 = 0x%08x hdsr1 = 0x%08x\n",
 		 intr, hdsr0, hdsr1));
 #else
-	(void)&hdsr0;
-	(void)&hdsr1;
+	__USE(hdsr0);
+	__USE(hdsr1);
 #endif
 
 	/* Playback Interrupt */

Reply via email to