
Enable qseecom driver by default to compile on all chipset in parallel with Qseecom-compat enable. Change-Id: I3dd3aa2864c41196197f0770020225fa36f088c1 Signed-off-by: Nitin LNU <quic_nlakra@quicinc.com>
25 lignes
632 B
C
25 lignes
632 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (c) 2022-2023, Qualcomm Innovation Center, Inc. All rights reserved.
|
|
*/
|
|
|
|
#ifndef __QSEECOM_PRIV_H_
|
|
#define __QSEECOM_PRIV_H_
|
|
|
|
#include <linux/types.h>
|
|
|
|
#if IS_ENABLED(CONFIG_QSEECOM) || IS_ENABLED(CONFIG_ARCH_SA8155)
|
|
|
|
int qseecom_process_listener_from_smcinvoke(uint32_t *result,
|
|
u64 *response_type, unsigned int *data);
|
|
#else
|
|
static inline int qseecom_process_listener_from_smcinvoke(uint32_t *result,
|
|
u64 *response_type, unsigned int *data)
|
|
{
|
|
return -EOPNOTSUPP;
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif
|