aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/debugfs.h
diff options
context:
space:
mode:
authorFelipe Balbi <balbi@ti.com>2013-01-18 22:40:32 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-01-18 15:25:53 -0800
commit833d6e01b4cfbc033a915ae02744247bbf7c619d (patch)
treec67c832bf1fb0654b3cb401b49571d9711f33c53 /include/linux/debugfs.h
parentwireless: remove conflicting version of print_hex_dump_bytes (diff)
downloadlinux-dev-833d6e01b4cfbc033a915ae02744247bbf7c619d.tar.xz
linux-dev-833d6e01b4cfbc033a915ae02744247bbf7c619d.zip
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: Felipe Balbi <balbi@ti.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include/linux/debugfs.h')
-rw-r--r--include/linux/debugfs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/debugfs.h b/include/linux/debugfs.h
index 66c434f5dd1e..63f2465807d4 100644
--- a/include/linux/debugfs.h
+++ b/include/linux/debugfs.h
@@ -33,7 +33,7 @@ struct debugfs_reg32 {
};
struct debugfs_regset32 {
- struct debugfs_reg32 *regs;
+ const struct debugfs_reg32 *regs;
int nregs;
void __iomem *base;
};