Module Name: src Committed By: pooka Date: Tue Mar 11 20:35:47 UTC 2014
Modified Files: src/sys/dev: rndpseudo.c Log Message: kill _RUMPKERNEL ifdef To generate a diff of this commit: cvs rdiff -u -r1.17 -r1.18 src/sys/dev/rndpseudo.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/dev/rndpseudo.c diff -u src/sys/dev/rndpseudo.c:1.17 src/sys/dev/rndpseudo.c:1.18 --- src/sys/dev/rndpseudo.c:1.17 Wed Sep 25 03:14:55 2013 +++ src/sys/dev/rndpseudo.c Tue Mar 11 20:35:47 2014 @@ -1,4 +1,4 @@ -/* $NetBSD: rndpseudo.c,v 1.17 2013/09/25 03:14:55 riastradh Exp $ */ +/* $NetBSD: rndpseudo.c,v 1.18 2014/03/11 20:35:47 pooka Exp $ */ /*- * Copyright (c) 1997-2013 The NetBSD Foundation, Inc. @@ -31,7 +31,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: rndpseudo.c,v 1.17 2013/09/25 03:14:55 riastradh Exp $"); +__KERNEL_RCSID(0, "$NetBSD: rndpseudo.c,v 1.18 2014/03/11 20:35:47 pooka Exp $"); #if defined(_KERNEL_OPT) #include "opt_compat_netbsd.h" @@ -66,7 +66,7 @@ __KERNEL_RCSID(0, "$NetBSD: rndpseudo.c, #include <dev/rnd_private.h> -#if defined(__HAVE_CPU_COUNTER) && !defined(_RUMPKERNEL) /* XXX: bad pooka */ +#if defined(__HAVE_CPU_COUNTER) #include <machine/cpu_counter.h> #endif @@ -165,7 +165,7 @@ rndpseudo_counter(void) { struct timeval tv; -#if defined(__HAVE_CPU_COUNTER) && !defined(_RUMPKERNEL) /* XXX: bad pooka */ +#if defined(__HAVE_CPU_COUNTER) if (cpu_hascounter()) return (cpu_counter32()); #endif