diff options
| author | matt <matt@NetBSD.org> | 2006-09-01 03:22:58 +0000 |
|---|---|---|
| committer | matt <matt@NetBSD.org> | 2006-09-01 03:22:58 +0000 |
| commit | aa6c194477d5ef446852c232f3fcd07be463760e (patch) | |
| tree | 114a046439fe7b6b54226bcd2604c89891b70d97 /sys/arch | |
| parent | fc28199c6e60a35fb3f0d2583ca440027673c629 (diff) | |
Remove an unneeded volatile.
Diffstat (limited to 'sys/arch')
| -rw-r--r-- | sys/arch/sun3/dev/zs_kgdb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/sun3/dev/zs_kgdb.c b/sys/arch/sun3/dev/zs_kgdb.c index 7a8e1638f6d..64cdb90fe72 100644 --- a/sys/arch/sun3/dev/zs_kgdb.c +++ b/sys/arch/sun3/dev/zs_kgdb.c @@ -1,4 +1,4 @@ -/* $NetBSD: zs_kgdb.c,v 1.20 2005/12/11 12:19:21 christos Exp $ */ +/* $NetBSD: zs_kgdb.c,v 1.21 2006/09/01 03:22:58 matt Exp $ */ /*- * Copyright (c) 1996 The NetBSD Foundation, Inc. @@ -48,7 +48,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: zs_kgdb.c,v 1.20 2005/12/11 12:19:21 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: zs_kgdb.c,v 1.21 2006/09/01 03:22:58 matt Exp $"); #include "opt_kgdb.h" @@ -138,7 +138,7 @@ void zs_kgdb_init(void) { struct zs_chanstate cs; - volatile struct zschan *zc; + struct zschan *zc; int channel, zsc_unit; extern const struct cdevsw zstty_cdevsw; |
