diff options
| author | Conrad Meyer <cem@FreeBSD.org> | 2019-04-16 17:12:17 +0000 |
|---|---|---|
| committer | Conrad Meyer <cem@FreeBSD.org> | 2019-04-16 17:12:17 +0000 |
| commit | f3d2512db6ec23985b10fbcbe0b3bd34ea2574df (patch) | |
| tree | 362456f2c947da3e40f2af0117dbaf150fd0fd3d /sys/dev/random/randomdev.h | |
| parent | 2866548c8a947b478c5700a7fac0c85d0b5ccaed (diff) | |
Notes
Diffstat (limited to 'sys/dev/random/randomdev.h')
| -rw-r--r-- | sys/dev/random/randomdev.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/random/randomdev.h b/sys/dev/random/randomdev.h index 41300f237aaf2..e5df7efefa5b9 100644 --- a/sys/dev/random/randomdev.h +++ b/sys/dev/random/randomdev.h @@ -118,7 +118,8 @@ extern struct sx randomdev_config_lock; #define RANDOM_CONFIG_S_LOCK(x) sx_slock(&randomdev_config_lock) #define RANDOM_CONFIG_S_UNLOCK(x) sx_sunlock(&randomdev_config_lock) #define RANDOM_CONFIG_DEINIT_LOCK(x) sx_destroy(&randomdev_config_lock) -void random_infra_init(int (*)(struct uio *, bool), void (*)(void *, u_int)); +void random_infra_init(int (*)(struct uio *, bool), void (*)(void *, u_int), + bool (*)(void)); void random_infra_uninit(void); #endif |
