Module Name: src Committed By: skrll Date: Sun Nov 29 10:08:10 UTC 2009
Modified Files: src/sys/arch/hppa/include: cpufunc.h Log Message: KNF To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 src/sys/arch/hppa/include/cpufunc.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/hppa/include/cpufunc.h diff -u src/sys/arch/hppa/include/cpufunc.h:1.12 src/sys/arch/hppa/include/cpufunc.h:1.13 --- src/sys/arch/hppa/include/cpufunc.h:1.12 Tue Nov 3 05:07:26 2009 +++ src/sys/arch/hppa/include/cpufunc.h Sun Nov 29 10:08:10 2009 @@ -1,4 +1,4 @@ -/* $NetBSD: cpufunc.h,v 1.12 2009/11/03 05:07:26 snj Exp $ */ +/* $NetBSD: cpufunc.h,v 1.13 2009/11/29 10:08:10 skrll Exp $ */ /* $OpenBSD: cpufunc.h,v 1.17 2000/05/15 17:22:40 mickey Exp $ */ @@ -68,7 +68,8 @@ #define hptbtop(b) ((b) >> 17) /* Get space register for an address */ -static __inline register_t ldsid(vaddr_t p) { +static __inline register_t +ldsid(vaddr_t p) { register_t ret; __asm volatile("ldsid (%1),%0" : "=r" (ret) : "r" (p)); return ret;