Index: pseudo_rng.c =================================================================== --- pseudo_rng.c (revision 255362) +++ pseudo_rng.c (working copy) @@ -39,6 +39,12 @@ static struct mtx pseudo_random_block_mtx; +/* Used to fake out unused random calls in random_adaptor */ +void +random_null_func(void) +{ +} + static int pseudo_random_block_read(void *buf __unused, int c __unused) { Index: randomdev.c =================================================================== --- randomdev.c (revision 255362) +++ randomdev.c (working copy) @@ -80,12 +80,6 @@ /* For use with make_dev(9)/destroy_dev(9). */ static struct cdev *random_dev; -/* Used to fake out unused random calls in random_adaptor */ -void -random_null_func(void) -{ -} - struct random_adaptor * random_get_active_adaptor(void) {