svn commit: r355017 - head/sys/dev/random

Conrad Meyer cem at FreeBSD.org
Fri Nov 22 20:18:08 UTC 2019


Author: cem
Date: Fri Nov 22 20:18:07 2019
New Revision: 355017
URL: https://svnweb.freebsd.org/changeset/base/355017

Log:
  random(4): Remove unused definitions
  
  Approved by:	csprng(gordon, markm)
  Differential Revision:	https://reviews.freebsd.org/D22481

Modified:
  head/sys/dev/random/randomdev.h

Modified: head/sys/dev/random/randomdev.h
==============================================================================
--- head/sys/dev/random/randomdev.h	Fri Nov 22 19:56:52 2019	(r355016)
+++ head/sys/dev/random/randomdev.h	Fri Nov 22 20:18:07 2019	(r355017)
@@ -65,12 +65,9 @@ extern bool random_bypass_disable_warnings;
 
 struct harvest_event;
 
-typedef void random_alg_init_t(void *);
-typedef void random_alg_deinit_t(void *);
 typedef void random_alg_pre_read_t(void);
 typedef void random_alg_read_t(uint8_t *, size_t);
 typedef bool random_alg_seeded_t(void);
-typedef void random_alg_reseed_t(void);
 typedef void random_alg_eventprocessor_t(struct harvest_event *);
 
 typedef u_int random_source_read_t(void *, u_int);


More information about the svn-src-all mailing list