Module Name:    src
Committed By:   kiyohara
Date:           Wed May 12 16:41:08 UTC 2010

Modified Files:
        src/sys/arch/hpcsh/dev/hd64461: hd64461uart.c

Log Message:
Fix arg of intr_establish().
  comintr() expects struct com_softc* for arg.


To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23 src/sys/arch/hpcsh/dev/hd64461/hd64461uart.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/hpcsh/dev/hd64461/hd64461uart.c
diff -u src/sys/arch/hpcsh/dev/hd64461/hd64461uart.c:1.22 src/sys/arch/hpcsh/dev/hd64461/hd64461uart.c:1.23
--- src/sys/arch/hpcsh/dev/hd64461/hd64461uart.c:1.22	Mon Apr 28 20:23:22 2008
+++ src/sys/arch/hpcsh/dev/hd64461/hd64461uart.c	Wed May 12 16:41:08 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: hd64461uart.c,v 1.22 2008/04/28 20:23:22 martin Exp $	*/
+/*	$NetBSD: hd64461uart.c,v 1.23 2010/05/12 16:41:08 kiyohara Exp $	*/
 
 /*-
  * Copyright (c) 2001, 2002 The NetBSD Foundation, Inc.
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: hd64461uart.c,v 1.22 2008/04/28 20:23:22 martin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: hd64461uart.c,v 1.23 2010/05/12 16:41:08 kiyohara Exp $");
 
 #include "opt_kgdb.h"
 
@@ -188,7 +188,7 @@
 	com_attach_subr(csc);
 
 	hd6446x_intr_establish(HD64461_INTC_UART, IST_LEVEL, IPL_TTY,
-	    comintr, self);
+	    comintr, csc);
 }
 
 STATIC void

Reply via email to