Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4488c59c authored by Adrian Bunk's avatar Adrian Bunk Committed by Linus Torvalds
Browse files

fs/ramfs/ extern cleanup



- internal.h shouldn't duplicate the extern declaration for
  ramfs_file_operations already in include/linux/ramfs.h
- file-mmu.c needs two #include's for seeing the extern declarations
  of it's global struct's

Signed-off-by: default avatarAdrian Bunk <bunk@kernel.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent f7b16c10
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -26,6 +26,9 @@

#include <linux/fs.h>
#include <linux/mm.h>
#include <linux/ramfs.h>

#include "internal.h"

const struct address_space_operations ramfs_aops = {
	.readpage	= simple_readpage,
+0 −1
Original line number Diff line number Diff line
@@ -11,5 +11,4 @@


extern const struct address_space_operations ramfs_aops;
extern const struct file_operations ramfs_file_operations;
extern const struct inode_operations ramfs_file_inode_operations;