Commit 12a400b0 authored by Georgi Djakov's avatar Georgi Djakov
Browse files

interconnect: Mark all dummy functions as static inline

There are a few dummy stub functions that are not marked as static inline
yet. Currently this header file is not included in any other file outside
of drivers/interconnect/, but that might not be the case in the future.
If this file gets included and the framework is disabled, we will be see
warnings. Let's fix this in advance.

Link: https://lore.kernel.org/r/20200228145945.13579-1-georgi.djakov@linaro.org


Signed-off-by: default avatarGeorgi Djakov <georgi.djakov@linaro.org>
parent 65461e26
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -120,7 +120,7 @@ static inline struct icc_node *icc_node_create(int id)
	return ERR_PTR(-ENOTSUPP);
}

void icc_node_destroy(int id)
static inline void icc_node_destroy(int id)
{
}

@@ -129,16 +129,16 @@ static inline int icc_link_create(struct icc_node *node, const int dst_id)
	return -ENOTSUPP;
}

int icc_link_destroy(struct icc_node *src, struct icc_node *dst)
static inline int icc_link_destroy(struct icc_node *src, struct icc_node *dst)
{
	return -ENOTSUPP;
}

void icc_node_add(struct icc_node *node, struct icc_provider *provider)
static inline void icc_node_add(struct icc_node *node, struct icc_provider *provider)
{
}

void icc_node_del(struct icc_node *node)
static inline void icc_node_del(struct icc_node *node)
{
}