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

Commit d0206fb5 authored by David Howells's avatar David Howells Committed by Al Viro
Browse files

procfs: Mark create_proc_read_entry deprecated



Mark create_proc_read_entry deprecated.  proc_create[_data]() should be used
instead.

Signed-off-by: default avatarDavid Howells <dhowells@redhat.com>
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 14b872f0
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -155,7 +155,8 @@ static inline struct proc_dir_entry *proc_create(const char *name, umode_t mode,
	return proc_create_data(name, mode, parent, proc_fops, NULL);
}

extern struct proc_dir_entry *create_proc_read_entry(const char *name,
extern __deprecated
struct proc_dir_entry *create_proc_read_entry(const char *name,
	umode_t mode, struct proc_dir_entry *base, 
	read_proc_t *read_proc, void *data);
 
@@ -191,7 +192,8 @@ static inline struct proc_dir_entry *proc_mkdir(const char *name,
static inline struct proc_dir_entry *proc_mkdir_mode(const char *name,
	umode_t mode, struct proc_dir_entry *parent) { return NULL; }

static inline struct proc_dir_entry *create_proc_read_entry(const char *name,
static inline __deprecated
struct proc_dir_entry *create_proc_read_entry(const char *name,
	umode_t mode, struct proc_dir_entry *base, 
	read_proc_t *read_proc, void * data) { return NULL; }