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.

Change-Id: I8b681046b65e69cb138e56e7ef88564c3deaedb9
Signed-off-by: Huang Yiwei <quic_hyiwei@quicinc.com>
This commit is contained in:
Huang Yiwei 2022-09-13 13:18:42 +08:00 committed by Gerrit - the friendly Code Review server
parent 7ea65072a1
commit a6985d43b7

View File

@ -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");