From: Alessandro Rubini Date: Mon, 21 Nov 2011 09:01:40 +0000 (+0100) Subject: debugfs: bugfix: include in file.c X-Git-Tag: v3.12-rc1~3797^2~11^2~26 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=03e099fbb0fbd8aaef9316e74790d9819c57c8ff;p=kernel%2Fkernel-generic.git debugfs: bugfix: include in file.c The regs32 machinery uses readl. I forgot the mandatory include and the code was not compiling on all archs. Reported-by: Stephen Rothwell Signed-off-by: Alessandro Rubini Signed-off-by: Greg Kroah-Hartman --- diff --git a/fs/debugfs/file.c b/fs/debugfs/file.c index fc98ec9..e0a3a59 100644 --- a/fs/debugfs/file.c +++ b/fs/debugfs/file.c @@ -19,6 +19,7 @@ #include #include #include +#include static ssize_t default_read_file(struct file *file, char __user *buf, size_t count, loff_t *ppos)