aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Boyd <[email protected]>2019-10-08 16:45:04 -0700
committerBjorn Andersson <[email protected]>2019-10-09 10:41:47 -0700
commit2bfd3e7651addcaf48f12d4f11ea9d8fca6c3aa8 (patch)
treeb93f8830ec7dc18cd0a096bd5a966d5738b4a41e
parent89da2ba947b1080199f4a6413686569a75fc2e7d (diff)
soc: qcom: llcc: Name regmaps to avoid collisions
We'll end up with debugfs collisions if we don't give names to the regmaps created by this driver. Change the name of the config before registering it so we don't collide in debugfs. Fixes: 7f9c136216c7 ("soc: qcom: Add broadcast base for Last Level Cache Controller (LLCC)") Cc: Venkata Narendra Kumar Gutta <[email protected]> Reviewed-by: Evan Green <[email protected]> Signed-off-by: Stephen Boyd <[email protected]> Signed-off-by: Bjorn Andersson <[email protected]>
-rw-r--r--drivers/soc/qcom/llcc-qcom.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/soc/qcom/llcc-qcom.c b/drivers/soc/qcom/llcc-qcom.c
index 436067367db4..3550eb7f7568 100644
--- a/drivers/soc/qcom/llcc-qcom.c
+++ b/drivers/soc/qcom/llcc-qcom.c
@@ -119,7 +119,7 @@ static const struct qcom_llcc_config sdm845_cfg = {
static struct llcc_drv_data *drv_data = (void *) -EPROBE_DEFER;
-static const struct regmap_config llcc_regmap_config = {
+static struct regmap_config llcc_regmap_config = {
.reg_bits = 32,
.reg_stride = 4,
.val_bits = 32,
@@ -393,6 +393,7 @@ static struct regmap *qcom_llcc_init_mmio(struct platform_device *pdev,
if (IS_ERR(base))
return ERR_CAST(base);
+ llcc_regmap_config.name = name;
return devm_regmap_init_mmio(&pdev->dev, base, &llcc_regmap_config);
}