Module Name: src Committed By: skrll Date: Fri Jun 4 06:39:38 UTC 2010
Modified Files: src/sys/arch/hp700/include: cpu.h Log Message: Remove unncessary cast. To generate a diff of this commit: cvs rdiff -u -r1.48 -r1.49 src/sys/arch/hp700/include/cpu.h 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/hp700/include/cpu.h diff -u src/sys/arch/hp700/include/cpu.h:1.48 src/sys/arch/hp700/include/cpu.h:1.49 --- src/sys/arch/hp700/include/cpu.h:1.48 Fri Jun 4 06:36:34 2010 +++ src/sys/arch/hp700/include/cpu.h Fri Jun 4 06:39:38 2010 @@ -1,4 +1,4 @@ -/* $NetBSD: cpu.h,v 1.48 2010/06/04 06:36:34 skrll Exp $ */ +/* $NetBSD: cpu.h,v 1.49 2010/06/04 06:39:38 skrll Exp $ */ /* $OpenBSD: cpu.h,v 1.55 2008/07/23 17:39:35 kettenis Exp $ */ @@ -270,7 +270,7 @@ __asm volatile("mfctl %1, %0" : "=r" (l): "i" (CR_CURLWP)); - return (struct lwp *)l; + return l; } #define curlwp hppa_curlwp()