rpmsg: glink: Include types in qcom_glink_native.h
Ensure that the used data types are available in qcom_glink_native.h, to silence LSP warnings. Signed-off-by: Bjorn Andersson <quic_bjorande@quicinc.com> Reviewed-by: Chris Lew <quic_clew@quicinc.com> Signed-off-by: Bjorn Andersson <andersson@kernel.org> Link: https://lore.kernel.org/r/20230109223745.1706152-1-quic_bjorande@quicinc.com
This commit is contained in:
parent
c23965b7f7
commit
f014eda5d5
|
@ -6,6 +6,8 @@
|
|||
#ifndef __QCOM_GLINK_NATIVE_H__
|
||||
#define __QCOM_GLINK_NATIVE_H__
|
||||
|
||||
#include <linux/types.h>
|
||||
|
||||
#define GLINK_FEATURE_INTENT_REUSE BIT(0)
|
||||
#define GLINK_FEATURE_MIGRATION BIT(1)
|
||||
#define GLINK_FEATURE_TRACER_PKT BIT(2)
|
||||
|
@ -24,6 +26,7 @@ struct qcom_glink_pipe {
|
|||
const void *data, size_t dlen);
|
||||
};
|
||||
|
||||
struct device;
|
||||
struct qcom_glink;
|
||||
|
||||
struct qcom_glink *qcom_glink_native_probe(struct device *dev,
|
||||
|
|
Loading…
Reference in New Issue