Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c95b59de authored by Tingwei Zhang's avatar Tingwei Zhang
Browse files

dcc_v2: Remove duplicate function



Remove duplicate is_dcc_enabled function introduced by
commit 2bc8103c ("dcc_v2: Don't set the default
value to sram when dcc is enabled").

Change-Id: I05f50b8b89b7433b889367cc080904d698b48f2f
Signed-off-by: default avatarTingwei Zhang <tingwei@codeaurora.org>
parent 18dc13d5
Loading
Loading
Loading
Loading
+0 −15
Original line number Diff line number Diff line
@@ -711,21 +711,6 @@ static void dcc_disable(struct dcc_drvdata *drvdata)
	mutex_unlock(&drvdata->mutex);
}

static bool is_dcc_enabled(struct dcc_drvdata *drvdata)
{
	bool dcc_enable = false;
	int list;

	for (list = 0; list < drvdata->nr_link_list; list++) {
		if (drvdata->enable[list]) {
			dcc_enable = true;
			break;
		}
	}

	return dcc_enable;
}

static ssize_t curr_list_show(struct device *dev,
			       struct device_attribute *attr, char *buf)
{