git: 1cd2ce04ea5d - stable/12 - random(4): Remove unused definitions
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 15 Feb 2022 03:27:19 UTC
The branch stable/12 has been updated by obrien: URL: https://cgit.FreeBSD.org/src/commit/?id=1cd2ce04ea5d70ea2bb273b106e4a06f5c55cfab commit 1cd2ce04ea5d70ea2bb273b106e4a06f5c55cfab Author: Conrad Meyer <cem@FreeBSD.org> AuthorDate: 2019-11-22 20:18:07 +0000 Commit: David E. O'Brien <obrien@FreeBSD.org> CommitDate: 2022-02-15 02:49:06 +0000 random(4): Remove unused definitions (cherry picked from commit 92ebf15da5c4cc3734bf0e35026f504f096524ca) --- sys/dev/random/randomdev.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/sys/dev/random/randomdev.h b/sys/dev/random/randomdev.h index 3f9b0f3acc74..abed568fb215 100644 --- a/sys/dev/random/randomdev.h +++ b/sys/dev/random/randomdev.h @@ -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);