archrandom.h 342 B

123456789101112131415
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __ASM_GENERIC_ARCHRANDOM_H__
  3. #define __ASM_GENERIC_ARCHRANDOM_H__
  4. static inline size_t __must_check arch_get_random_longs(unsigned long *v, size_t max_longs)
  5. {
  6. return 0;
  7. }
  8. static inline size_t __must_check arch_get_random_seed_longs(unsigned long *v, size_t max_longs)
  9. {
  10. return 0;
  11. }
  12. #endif