diff options
author | Philipp Zabel <p.zabel@pengutronix.de> | 2016-02-25 04:45:09 -0500 |
---|---|---|
committer | Stephen Boyd <sboyd@codeaurora.org> | 2016-03-29 19:30:01 -0400 |
commit | b1b69c5dd5ada9be222721dd297c329dafb65d06 (patch) | |
tree | 36d681ca307a2e8497d3a8c78ca868718390141d | |
parent | 3fb950fea6e14b159899b713ede0b7506ca03649 (diff) |
clk: atlas7: Make reset_control_ops const
The atlas7_rst_ops structure is never modified. Make it const.
Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
-rw-r--r-- | drivers/clk/sirf/clk-atlas7.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/sirf/clk-atlas7.c b/drivers/clk/sirf/clk-atlas7.c index 957aae63e7cc..d0c6c9a2d06a 100644 --- a/drivers/clk/sirf/clk-atlas7.c +++ b/drivers/clk/sirf/clk-atlas7.c | |||
@@ -1423,7 +1423,7 @@ static int atlas7_reset_module(struct reset_controller_dev *rcdev, | |||
1423 | return 0; | 1423 | return 0; |
1424 | } | 1424 | } |
1425 | 1425 | ||
1426 | static struct reset_control_ops atlas7_rst_ops = { | 1426 | static const struct reset_control_ops atlas7_rst_ops = { |
1427 | .reset = atlas7_reset_module, | 1427 | .reset = atlas7_reset_module, |
1428 | }; | 1428 | }; |
1429 | 1429 | ||