mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-19 12:06:52 +07:00
395a48053a
Remove the standalone SMD implementation as we have transitioned the client drivers to use the RPMSG based one. Also remove all dependencies on QCOM_SMD from Kconfig files, in order to keep them selectable in the absence of the removed symbol. Acked-by: Andy Gross <andy.gross@linaro.org> Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org> Signed-off-by: David S. Miller <davem@davemloft.net>
32 lines
565 B
C
32 lines
565 B
C
|
|
#ifndef _LINUX_RPMSG_QCOM_SMD_H
|
|
#define _LINUX_RPMSG_QCOM_SMD_H
|
|
|
|
#include <linux/device.h>
|
|
|
|
struct qcom_smd_edge;
|
|
|
|
#if IS_ENABLED(CONFIG_RPMSG_QCOM_SMD)
|
|
|
|
struct qcom_smd_edge *qcom_smd_register_edge(struct device *parent,
|
|
struct device_node *node);
|
|
int qcom_smd_unregister_edge(struct qcom_smd_edge *edge);
|
|
|
|
#else
|
|
|
|
static inline struct qcom_smd_edge *
|
|
qcom_smd_register_edge(struct device *parent,
|
|
struct device_node *node)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
static inline int qcom_smd_unregister_edge(struct qcom_smd_edge *edge)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|