mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 20:48:49 +08:00
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>
This commit is contained in:
parent
0e18e60e1b
commit
387eb3f3d5
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user