Module Name: src
Committed By: martin
Date: Sun Sep 15 14:10:04 UTC 2013
Modified Files:
src/sys/dev/sun: sunkbd.c
Log Message:
Remove unused variable
To generate a diff of this commit:
cvs rdiff -u -r1.28 -r1.29 src/sys/dev/sun/sunkbd.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/sun/sunkbd.c
diff -u src/sys/dev/sun/sunkbd.c:1.28 src/sys/dev/sun/sunkbd.c:1.29
--- src/sys/dev/sun/sunkbd.c:1.28 Sat Aug 14 20:52:05 2010
+++ src/sys/dev/sun/sunkbd.c Sun Sep 15 14:10:04 2013
@@ -1,4 +1,4 @@
-/* $NetBSD: sunkbd.c,v 1.28 2010/08/14 20:52:05 jym Exp $ */
+/* $NetBSD: sunkbd.c,v 1.29 2013/09/15 14:10:04 martin Exp $ */
/*
* Copyright (c) 1992, 1993
@@ -51,7 +51,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sunkbd.c,v 1.28 2010/08/14 20:52:05 jym Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sunkbd.c,v 1.29 2013/09/15 14:10:04 martin Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -239,11 +239,8 @@ int
sunkbdinput(int c, struct tty *tp)
{
struct kbd_sun_softc *k = tp->t_sc;
- u_char *cc;
int error;
- cc = tp->t_cc;
-
/*
* Handle exceptional conditions (break, parity, framing).
*/