Skip to content

Commit

Permalink
remoteproc: qcom: expose types for COMPILE_TEST
Browse files Browse the repository at this point in the history
Stub functions are defined for SSR notifier registration in case
QCOM_RPROC_COMMON is not configured.  As a result, code that uses
these functions can link successfully even if the common remoteproc
code is not built.

Code that registers an SSR notifier function likely needs the
types defined in "qcom_rproc.h", but those are only exposed if
QCOM_RPROC_COMMON is enabled.

Rearrange the conditional definition so the qcom_ssr_notify_data
structure and qcom_ssr_notify_type enumerated type are defined
whether or not QCOM_RPROC_COMMON is enabled.

Reviewed-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Signed-off-by: Alex Elder <elder@linaro.org>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
  • Loading branch information
Alex Elder authored and Jakub Kicinski committed Jan 9, 2021
1 parent 3f5ec37 commit 9941222
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/linux/remoteproc/qcom_rproc.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@

struct notifier_block;

#if IS_ENABLED(CONFIG_QCOM_RPROC_COMMON)

/**
* enum qcom_ssr_notify_type - Startup/Shutdown events related to a remoteproc
* processor.
Expand All @@ -26,6 +24,8 @@ struct qcom_ssr_notify_data {
bool crashed;
};

#if IS_ENABLED(CONFIG_QCOM_RPROC_COMMON)

void *qcom_register_ssr_notifier(const char *name, struct notifier_block *nb);
int qcom_unregister_ssr_notifier(void *notify, struct notifier_block *nb);

Expand Down

0 comments on commit 9941222

Please sign in to comment.