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

Commit 0072b138 authored by Adrian Bunk's avatar Adrian Bunk Committed by Linus Torvalds
Browse files

[PATCH] include/linux/dcookies.h: dummy functions must be "static inline"



We don't want these to be global functions.

Signed-off-by: default avatarAdrian Bunk <bunk@stusta.de>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 001abc93
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -48,12 +48,12 @@ int get_dcookie(struct dentry * dentry, struct vfsmount * vfsmnt,

#else

struct dcookie_user * dcookie_register(void)
static inline struct dcookie_user * dcookie_register(void)
{
	return NULL;
}

void dcookie_unregister(struct dcookie_user * user)
static inline void dcookie_unregister(struct dcookie_user * user)
{
	return;
}