From: Tomasz Stanislawski Date: Tue, 12 Jul 2011 09:27:20 +0000 (+0200) Subject: anonfd: fix missing declaration X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=e46ebd27823b27273da780376d54c080250ff1a2;p=linux-beck.git anonfd: fix missing declaration The forward declaration of struct file_operations is added to avoid compilation warnings. Signed-off-by: Tomasz Stanislawski Signed-off-by: Al Viro --- diff --git a/include/linux/anon_inodes.h b/include/linux/anon_inodes.h index 69a21e0ebd33..8013a45242fe 100644 --- a/include/linux/anon_inodes.h +++ b/include/linux/anon_inodes.h @@ -8,6 +8,8 @@ #ifndef _LINUX_ANON_INODES_H #define _LINUX_ANON_INODES_H +struct file_operations; + struct file *anon_inode_getfile(const char *name, const struct file_operations *fops, void *priv, int flags);