aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/debugfs.h
diff options
context:
space:
mode:
authorAlessandro Rubini <rubini@gnudd.com>2011-11-18 23:53:29 +0100
committerGreg Kroah-Hartman <gregkh@suse.de>2011-11-18 15:19:21 -0800
commit8ee4dd9f063ce59c08f3ce283ca03306131aaf3a (patch)
tree748c061f3a3b0aa4e15794e7509bbb889bb3fde7 /include/linux/debugfs.h
parentusb: dwc3: use debugfs_print_regs32() (diff)
downloadlinux-dev-8ee4dd9f063ce59c08f3ce283ca03306131aaf3a.tar.xz
linux-dev-8ee4dd9f063ce59c08f3ce283ca03306131aaf3a.zip
debugfs: print_regs32: make regs array a const pointer
Signed-off-by: Alessandro Rubini <rubini@gnudd.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
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 5e6b01f6db4c..e8c3abc60811 100644
--- a/include/linux/debugfs.h
+++ b/include/linux/debugfs.h
@@ -90,7 +90,7 @@ struct dentry *debugfs_create_regset32(const char *name, mode_t mode,
struct dentry *parent,
struct debugfs_regset32 *regset);
-int debugfs_print_regs32(struct seq_file *s, struct debugfs_reg32 *regs,
+int debugfs_print_regs32(struct seq_file *s, const struct debugfs_reg32 *regs,
int nregs, void __iomem *base, char *prefix);
bool debugfs_initialized(void);