1
0
Fork 0

reset: socfpga: Make reset_control_ops const

The socfpga_reset_ops structure is never modified. Make it const.

Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
hifive-unleashed-5.1
Philipp Zabel 2016-01-17 15:13:41 +01:00
parent 0e18e60e1b
commit 387eb3f3d5
1 changed files with 1 additions and 1 deletions

View File

@ -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,