Commit 833d6e01 authored by Felipe Balbi's avatar Felipe Balbi Committed by Greg Kroah-Hartman

debugfs: regset32: make struct debugfs_reg32 pointer const

no user of that should ever change that pointer,
so let's mark it const to prevent that from
happening.
Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 0d4fb6e4
...@@ -33,7 +33,7 @@ struct debugfs_reg32 { ...@@ -33,7 +33,7 @@ struct debugfs_reg32 {
}; };
struct debugfs_regset32 { struct debugfs_regset32 {
struct debugfs_reg32 *regs; const struct debugfs_reg32 *regs;
int nregs; int nregs;
void __iomem *base; void __iomem *base;
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment