summaryrefslogblamecommitdiff
path: root/include/asm-generic/archrandom.h
blob: 3cd7f980cfdca7271271b11e6602795447674641 (plain) (tree)
1
2
3
4
5
6
7
8
9



                                      
                                                                                           
 
                 

 
                                                                                                
 
                 


      
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef __ASM_GENERIC_ARCHRANDOM_H__
#define __ASM_GENERIC_ARCHRANDOM_H__

static inline size_t __must_check arch_get_random_longs(unsigned long *v, size_t max_longs)
{
	return 0;
}

static inline size_t __must_check arch_get_random_seed_longs(unsigned long *v, size_t max_longs)
{
	return 0;
}

#endif