Module Name:    src
Committed By:   tsutsui
Date:           Mon Sep 23 16:44:30 UTC 2013

Modified Files:
        src/sys/arch/alpha/pci: tsc.c

Log Message:
Remove a 'register' declaration. Noted in PR port-alpha/48148.


To generate a diff of this commit:
cvs rdiff -u -r1.20 -r1.21 src/sys/arch/alpha/pci/tsc.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/arch/alpha/pci/tsc.c
diff -u src/sys/arch/alpha/pci/tsc.c:1.20 src/sys/arch/alpha/pci/tsc.c:1.21
--- src/sys/arch/alpha/pci/tsc.c:1.20	Mon Sep 23 16:41:57 2013
+++ src/sys/arch/alpha/pci/tsc.c	Mon Sep 23 16:44:30 2013
@@ -1,4 +1,4 @@
-/* $NetBSD: tsc.c,v 1.20 2013/09/23 16:41:57 tsutsui Exp $ */
+/* $NetBSD: tsc.c,v 1.21 2013/09/23 16:44:30 tsutsui Exp $ */
 
 /*-
  * Copyright (c) 1999 by Ross Harvey.  All rights reserved.
@@ -35,7 +35,7 @@
 
 #include <sys/cdefs.h>
 
-__KERNEL_RCSID(0, "$NetBSD: tsc.c,v 1.20 2013/09/23 16:41:57 tsutsui Exp $");
+__KERNEL_RCSID(0, "$NetBSD: tsc.c,v 1.21 2013/09/23 16:44:30 tsutsui Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -151,7 +151,7 @@ tscattach(device_t parent, device_t self
 static int
 tscprint(void *aux, const char *p)
 {
-	register struct tsp_attach_args *tsp = aux;
+	struct tsp_attach_args *tsp = aux;
 
 	if(p)
 		aprint_normal("%s%d at %s", tsp->tsp_name, tsp->tsp_slot, p);

Reply via email to