aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/remoteproc/qcom_common.c
diff options
context:
space:
mode:
authorBjorn Andersson <bjorn.andersson@linaro.org>2018-01-05 15:58:04 -0800
committerBjorn Andersson <bjorn.andersson@linaro.org>2018-01-15 09:30:00 -0800
commit4f6fd5a03779cefdf3401ed20690f67ff76cf1ff (patch)
tree5a70e8acf0f77e65decec1afaa736e9d38091e80 /drivers/remoteproc/qcom_common.c
parentremoteproc: Move resource table load logic to find (diff)
downloadlinux-dev-4f6fd5a03779cefdf3401ed20690f67ff76cf1ff.tar.xz
linux-dev-4f6fd5a03779cefdf3401ed20690f67ff76cf1ff.zip
remoteproc: Drop dangling find_rsc_table dummies
As the core now deals with the lack of a resource table, remove the dangling custom dummy implementations of find_rsc_table from drivers. Reviewed-By: Loic Pallardy <loic.pallardy@st.com> Tested-By: Loic Pallardy <loic.pallardy@st.com> Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Diffstat (limited to 'drivers/remoteproc/qcom_common.c')
-rw-r--r--drivers/remoteproc/qcom_common.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/drivers/remoteproc/qcom_common.c b/drivers/remoteproc/qcom_common.c
index d487040b528b..6eb9161f80b3 100644
--- a/drivers/remoteproc/qcom_common.c
+++ b/drivers/remoteproc/qcom_common.c
@@ -32,25 +32,6 @@
static BLOCKING_NOTIFIER_HEAD(ssr_notifiers);
-/**
- * qcom_mdt_find_rsc_table() - provide dummy resource table for remoteproc
- * @rproc: remoteproc handle
- * @fw: firmware header
- * @tablesz: outgoing size of the table
- *
- * Returns a dummy table.
- */
-struct resource_table *qcom_mdt_find_rsc_table(struct rproc *rproc,
- const struct firmware *fw,
- int *tablesz)
-{
- static struct resource_table table = { .ver = 1, };
-
- *tablesz = sizeof(table);
- return &table;
-}
-EXPORT_SYMBOL_GPL(qcom_mdt_find_rsc_table);
-
static int glink_subdev_probe(struct rproc_subdev *subdev)
{
struct qcom_rproc_glink *glink = to_glink_subdev(subdev);