mirror of
				https://xff.cz/git/u-boot/
				synced 2025-10-31 10:26:10 +01:00 
			
		
		
		
	Usage of common.h is deprecated. * Remove common.h from RNG drivers. * Sort includes. * Add time.h to sandbox driver. * Add linux/types.h to rng.h to provide size_t. Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
		
			
				
	
	
		
			25 lines
		
	
	
		
			408 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			408 B
		
	
	
	
		
			C
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0+
 | |
| /*
 | |
|  * Copyright (c) 2019, Linaro Limited
 | |
|  */
 | |
| 
 | |
| #define LOG_CATEGORY UCLASS_RNG
 | |
| 
 | |
| #include <dm.h>
 | |
| #include <rng.h>
 | |
| 
 | |
| int dm_rng_read(struct udevice *dev, void *buffer, size_t size)
 | |
| {
 | |
| 	const struct dm_rng_ops *ops = device_get_ops(dev);
 | |
| 
 | |
| 	if (!ops->read)
 | |
| 		return -ENOSYS;
 | |
| 
 | |
| 	return ops->read(dev, buffer, size);
 | |
| }
 | |
| 
 | |
| UCLASS_DRIVER(rng) = {
 | |
| 	.name = "rng",
 | |
| 	.id = UCLASS_RNG,
 | |
| };
 |