diff options
author | Bjorn Andersson <bjorn.andersson@linaro.org> | 2016-08-09 20:36:02 -0400 |
---|---|---|
committer | Andy Gross <andy.gross@linaro.org> | 2016-08-23 16:46:32 -0400 |
commit | 3a1281848830fcb3202cfd7ffe62d19641471d05 (patch) | |
tree | 1c953956c6215f3315c03b2375dd8a2b7907e374 | |
parent | dea8524218099ff73ffd1ebd08d97ce6a45b7e0e (diff) |
soc: qcom: smd: Correct compile stub prototypes
The prototypes for the compile stubs was not properly marked as static
inline, this patch corrects this.
Fixes: f79a917e69e1 ("Merge tag 'qcom-soc-for-4.7-2' into net-next")
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Signed-off-by: Andy Gross <andy.gross@linaro.org>
-rw-r--r-- | include/linux/soc/qcom/smd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/soc/qcom/smd.h b/include/linux/soc/qcom/smd.h index cbb0f06c41b2..910ce1d9ba89 100644 --- a/include/linux/soc/qcom/smd.h +++ b/include/linux/soc/qcom/smd.h | |||
@@ -83,14 +83,14 @@ qcom_smd_open_channel(struct qcom_smd_channel *channel, | |||
83 | return NULL; | 83 | return NULL; |
84 | } | 84 | } |
85 | 85 | ||
86 | void *qcom_smd_get_drvdata(struct qcom_smd_channel *channel) | 86 | static inline void *qcom_smd_get_drvdata(struct qcom_smd_channel *channel) |
87 | { | 87 | { |
88 | /* This shouldn't be possible */ | 88 | /* This shouldn't be possible */ |
89 | WARN_ON(1); | 89 | WARN_ON(1); |
90 | return NULL; | 90 | return NULL; |
91 | } | 91 | } |
92 | 92 | ||
93 | void qcom_smd_set_drvdata(struct qcom_smd_channel *channel, void *data) | 93 | static inline void qcom_smd_set_drvdata(struct qcom_smd_channel *channel, void *data) |
94 | { | 94 | { |
95 | /* This shouldn't be possible */ | 95 | /* This shouldn't be possible */ |
96 | WARN_ON(1); | 96 | WARN_ON(1); |