From: Philipp Zabel
Date: Sun, 17 Jan 2016 14:13:41 +0000 (+0100)
Subject: reset: socfpga: Make reset_control_ops const
X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=387eb3f3d574ebf43b3afe83da59a99481866b78;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git
reset: socfpga: Make reset_control_ops const
The socfpga_reset_ops structure is never modified. Make it const.
Signed-off-by: Philipp Zabel
---
diff --git a/drivers/reset/reset-socfpga.c b/drivers/reset/reset-socfpga.c
index b7d773d9248c..cd05a7032b17 100644
--- a/drivers/reset/reset-socfpga.c
+++ b/drivers/reset/reset-socfpga.c
@@ -90,7 +90,7 @@ static int socfpga_reset_status(struct reset_controller_dev *rcdev,
return !(reg & BIT(offset));
}
-static struct reset_control_ops socfpga_reset_ops = {
+static const struct reset_control_ops socfpga_reset_ops = {
.assert = socfpga_reset_assert,
.deassert = socfpga_reset_deassert,
.status = socfpga_reset_status,