diff options
author | Bjorn Andersson <bjorn.andersson@linaro.org> | 2017-09-02 01:42:29 +0300 |
---|---|---|
committer | Bjorn Andersson <bjorn.andersson@linaro.org> | 2017-09-02 01:42:29 +0300 |
commit | 4fec0a5a193666279635eeb0257984b7a88ee332 (patch) | |
tree | 59d1ba34678622553508b5ba7b51144e18f7cba5 /drivers/remoteproc | |
parent | f9cbbd256ccebc5911cb163f1cbb59fefd173d9a (diff) | |
download | linux-4fec0a5a193666279635eeb0257984b7a88ee332.tar.xz |
remoteproc: qcom: Make ssr_notifiers local
The ssr_notifiers variable should be local, so add the missing static
storage classifier.
Fixes: 1e140df04965 ("remoteproc: qcom: Add support for SSR notifications")
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Diffstat (limited to 'drivers/remoteproc')
-rw-r--r-- | drivers/remoteproc/qcom_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/remoteproc/qcom_common.c b/drivers/remoteproc/qcom_common.c index 7b40b79f8d9c..257680f82b27 100644 --- a/drivers/remoteproc/qcom_common.c +++ b/drivers/remoteproc/qcom_common.c @@ -28,7 +28,7 @@ #define to_smd_subdev(d) container_of(d, struct qcom_rproc_subdev, subdev) #define to_ssr_subdev(d) container_of(d, struct qcom_rproc_ssr, subdev) -BLOCKING_NOTIFIER_HEAD(ssr_notifiers); +static BLOCKING_NOTIFIER_HEAD(ssr_notifiers); /** * qcom_mdt_find_rsc_table() - provide dummy resource table for remoteproc |