android_kernel_xiaomi_sm7250/drivers/char/adsprpc_compat.h
Tharun Kumar Merugu d5c40c85d4 msm: adsprpc: add fastrpc driver files
Add fastrpc driver files, which provide a communication
mechanism that allows clients to make remote method
invocations across processor boundary to application, compute
and sensors DSP processors.

Change-Id: Idca98e5304f61ca7462d82f1252fe51982907d1c
Acked-by: Thyagarajan Venkatanarayanan <venkatan@qti.qualcomm.com>
Signed-off-by: Tharun Kumar Merugu <mtharu@codeaurora.org>
2018-11-14 23:13:42 +05:30

18 lines
390 B
C

/* SPDX-License-Identifier: GPL-2.0 */
/*
* Copyright (c) 2014, 2018 The Linux Foundation. All rights reserved.
*/
#ifndef ADSPRPC_COMPAT_H
#define ADSPRPC_COMPAT_H
#ifdef CONFIG_COMPAT
long compat_fastrpc_device_ioctl(struct file *filp, unsigned int cmd,
unsigned long arg);
#else
#define compat_fastrpc_device_ioctl NULL
#endif /* CONFIG_COMPAT */
#endif /* ADSPRPC_COMPAT_H */