1
0
Fork 0

reset: hi6220: Make reset_control_ops const

The hi6220_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:11:59 +01:00
parent d2f79f223f
commit 0e18e60e1b
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ static int hi6220_reset_deassert(struct reset_controller_dev *rc_dev,
return 0;
}
static struct reset_control_ops hi6220_reset_ops = {
static const struct reset_control_ops hi6220_reset_ops = {
.assert = hi6220_reset_assert,
.deassert = hi6220_reset_deassert,
};