Module Name:    src
Committed By:   martin
Date:           Sun Sep 15 09:26:39 UTC 2013

Modified Files:
        src/sys/dev/ic: pdq.c

Log Message:
Mark a variable as potentially unused


To generate a diff of this commit:
cvs rdiff -u -r1.39 -r1.40 src/sys/dev/ic/pdq.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/ic/pdq.c
diff -u src/sys/dev/ic/pdq.c:1.39 src/sys/dev/ic/pdq.c:1.40
--- src/sys/dev/ic/pdq.c:1.39	Sun Dec 11 12:21:28 2005
+++ src/sys/dev/ic/pdq.c	Sun Sep 15 09:26:39 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: pdq.c,v 1.39 2005/12/11 12:21:28 christos Exp $	*/
+/*	$NetBSD: pdq.c,v 1.40 2013/09/15 09:26:39 martin Exp $	*/
 
 /*-
  * Copyright (c) 1995,1996 Matt Thomas <m...@3am-software.com>
@@ -40,7 +40,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pdq.c,v 1.39 2005/12/11 12:21:28 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pdq.c,v 1.40 2013/09/15 09:26:39 martin Exp $");
 
 #define	PDQ_HWSUPPORT	/* for pdq.h */
 
@@ -626,7 +626,7 @@ pdq_process_command_responses(
     pdq_descriptor_block_t * const dbp = pdq->pdq_dbp;
     const pdq_response_generic_t *rspgen;
     pdq_cmd_code_t op;
-    pdq_response_code_t status;
+    pdq_response_code_t status __unused;
 
     /*
      * We have to process the command and response in tandem so

Reply via email to