Commit f31c7c7a authored by Krzysztof Kozlowski's avatar Krzysztof Kozlowski

ARM: EXYNOS: Constify local exynos_pmu_data structure

The Exynos5420 instance of exynos_pmu_data structure is not modified and
can be made const.
Suggested-by: default avatarPavel Fedin <p.fedin@samsung.com>
Signed-off-by: default avatarKrzysztof Kozlowski <k.kozlowski@samsung.com>
Reviewed-by: default avatarPankaj Dubey <pankaj.dubey@samsung.com>
parent 23067d39
......@@ -880,7 +880,7 @@ static const struct exynos_pmu_data exynos5250_pmu_data = {
.powerdown_conf = exynos5_powerdown_conf,
};
static struct exynos_pmu_data exynos5420_pmu_data = {
static const struct exynos_pmu_data exynos5420_pmu_data = {
.pmu_config = exynos5420_pmu_config,
.pmu_init = exynos5420_pmu_init,
.powerdown_conf = exynos5420_powerdown_conf,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment