/* * Copyright (c) 2017 Intel Corporation * * SPDX-License-Identifier: Apache-2.0 */ #include #include _SYSCALL_HANDLER(entropy_get_entropy, dev, buffer, len) { _SYSCALL_OBJ(dev, K_OBJ_DRIVER_ENTROPY); _SYSCALL_MEMORY_WRITE(buffer, len); return _impl_entropy_get_entropy((struct device *)dev, (u8_t *)buffer, len); }