Skip to content

Commit

Permalink
remoteproc: qcom: Make ssr_notifiers local
Browse files Browse the repository at this point in the history
The ssr_notifiers variable should be local, so add the missing static
storage classifier.

Fixes: 1e140df ("remoteproc: qcom: Add support for SSR notifications")
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
  • Loading branch information
Bjorn Andersson committed Sep 1, 2017
1 parent f9cbbd2 commit 4fec0a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/remoteproc/qcom_common.c
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 4fec0a5

Please sign in to comment.