Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef __ASM_GENERIC_ARCHRANDOM_H__
0003 #define __ASM_GENERIC_ARCHRANDOM_H__
0004 
0005 static inline size_t __must_check arch_get_random_longs(unsigned long *v, size_t max_longs)
0006 {
0007     return 0;
0008 }
0009 
0010 static inline size_t __must_check arch_get_random_seed_longs(unsigned long *v, size_t max_longs)
0011 {
0012     return 0;
0013 }
0014 
0015 #endif