
Move the securemsm-kernel uapi headers to a uapi include path, to conform with the uapi requirements. NOTE: Duplicating qcedev.h & smcinvoke.h temporarily until clients that manually include the path use the exported headers. Change-Id: I33d390954ff0e6c721a5fa8256b431020e4f8912 Signed-off-by: Gaurav Kashyap <quic_gaurkash@quicinc.com>
18 linhas
448 B
C
18 linhas
448 B
C
/* SPDX-License-Identifier: GPL-2.0-only WITH Linux-syscall-note */
|
|
/*
|
|
* Copyright (c) 2020-2021, The Linux Foundation. All rights reserved.
|
|
* Copyright (c) 2022-2023 Qualcomm Innovation Center, Inc. All rights reserved.
|
|
*/
|
|
#ifndef _UAPI_QRNG_H_
|
|
#define _UAPI_QRNG_H_
|
|
|
|
#include <linux/types.h>
|
|
#include <linux/ioctl.h>
|
|
|
|
#define QRNG_IOC_MAGIC 0x100
|
|
|
|
#define QRNG_IOCTL_RESET_BUS_BANDWIDTH\
|
|
_IO(QRNG_IOC_MAGIC, 1)
|
|
|
|
#endif /* _UAPI_QRNG_H_ */
|