mirror of
https://github.com/u-boot/u-boot.git
synced 2024-12-03 01:23:29 +08:00
657bd30c6b
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,
|
|
};
|