Message ID | 20221022014403.3881893-3-Jason@zx2c4.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | convert tree to get_random_u32_{below,above,between}() | expand |
diff --git a/include/linux/prandom.h b/include/linux/prandom.h index 1f4a0de7b019..8272c08f3951 100644 --- a/include/linux/prandom.h +++ b/include/linux/prandom.h @@ -23,12 +23,6 @@ void prandom_seed_full_state(struct rnd_state __percpu *pcpu_state); #define prandom_init_once(pcpu_state) \ DO_ONCE(prandom_seed_full_state, (pcpu_state)) -/* Deprecated: use get_random_u32_below() instead. */ -static inline u32 prandom_u32_max(u32 ep_ro) -{ - return get_random_u32_below(ep_ro); -} - /* * Handle minimum values for seeds */
With no more users left, we can finally remove this function. Its replacement is get_random_u32_below(). Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> --- include/linux/prandom.h | 6 ------ 1 file changed, 6 deletions(-)