[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20220913062721.5986-1-quic_hyiwei@quicinc.com>
Date: Tue, 13 Sep 2022 14:27:21 +0800
From: Huang Yiwei <quic_hyiwei@...cinc.com>
To: <agross@...nel.org>, <bjorn.andersson@...aro.org>,
<konrad.dybcio@...ainline.org>
CC: <djakov@...nel.org>, <dmitry.baryshkov@...aro.org>,
<leo.yan@...aro.org>, <linux-arm-msm@...r.kernel.org>,
<linux-pm@...r.kernel.org>, <linux-kernel@...r.kernel.org>,
Huang Yiwei <quic_hyiwei@...cinc.com>
Subject: [PATCH] interconnect: qcom: Add the missing MODULE_LICENSE
Since icc-common.c can be compiled as module, add the missing
MODULE_LICENSE to avoid compile errors.
Fixes: cb4805b5a5e4 ("interconnect: qcom: Move qcom_icc_xlate_extended() to a common file")
Signed-off-by: Huang Yiwei <quic_hyiwei@...cinc.com>
---
drivers/interconnect/qcom/icc-common.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/interconnect/qcom/icc-common.c b/drivers/interconnect/qcom/icc-common.c
index 0822ce207b5d..f27f4fdc4531 100644
--- a/drivers/interconnect/qcom/icc-common.c
+++ b/drivers/interconnect/qcom/icc-common.c
@@ -5,6 +5,7 @@
#include <linux/of.h>
#include <linux/slab.h>
+#include <linux/module.h>
#include "icc-common.h"
@@ -32,3 +33,5 @@ struct icc_node_data *qcom_icc_xlate_extended(struct of_phandle_args *spec, void
return ndata;
}
EXPORT_SYMBOL_GPL(qcom_icc_xlate_extended);
+
+MODULE_LICENSE("GPL");
--
2.17.1
Powered by blists - more mailing lists