mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-06 00:41:55 +00:00
move entropy.h to drivers/entropy.h and create a shim for backward-compatibility. No functional changes to the headers. A warning in the shim can be controlled with CONFIG_COMPAT_INCLUDES. Related to #16539 Signed-off-by: Anas Nashif <anas.nashif@intel.com>
17 lines
394 B
C
17 lines
394 B
C
/*
|
|
* Copyright (c) 2017 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <drivers/entropy.h>
|
|
#include <syscall_handler.h>
|
|
|
|
Z_SYSCALL_HANDLER(entropy_get_entropy, dev, buffer, len)
|
|
{
|
|
Z_OOPS(Z_SYSCALL_DRIVER_ENTROPY(dev, get_entropy));
|
|
Z_OOPS(Z_SYSCALL_MEMORY_WRITE(buffer, len));
|
|
return z_impl_entropy_get_entropy((struct device *)dev, (u8_t *)buffer,
|
|
len);
|
|
}
|