Module Name: src
Committed By: justin
Date: Mon Aug 11 22:36:49 UTC 2014
Modified Files:
src/sys/crypto/cprng_fast: cprng_fast.c
Log Message:
Fix inconsistent use of inline in prototype and definition
To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/sys/crypto/cprng_fast/cprng_fast.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/crypto/cprng_fast/cprng_fast.c
diff -u src/sys/crypto/cprng_fast/cprng_fast.c:1.10 src/sys/crypto/cprng_fast/cprng_fast.c:1.11
--- src/sys/crypto/cprng_fast/cprng_fast.c:1.10 Mon Aug 11 13:22:16 2014
+++ src/sys/crypto/cprng_fast/cprng_fast.c Mon Aug 11 22:36:49 2014
@@ -1,4 +1,4 @@
-/* $NetBSD: cprng_fast.c,v 1.10 2014/08/11 13:22:16 riastradh Exp $ */
+/* $NetBSD: cprng_fast.c,v 1.11 2014/08/11 22:36:49 justin Exp $ */
/*-
* Copyright (c) 2014 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: cprng_fast.c,v 1.10 2014/08/11 13:22:16 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cprng_fast.c,v 1.11 2014/08/11 22:36:49 justin Exp $");
#include <sys/types.h>
#include <sys/param.h>
@@ -264,7 +264,7 @@ cprng_fast_put(struct cprng_fast *cprng,
percpu_putref(cprng_fast_percpu);
}
-static inline void
+static void
cprng_fast_schedule_reseed(struct cprng_fast *cprng __unused)
{