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

Commit c42e5715 authored by Joe Perches's avatar Joe Perches Committed by Linus Torvalds
Browse files

slab: convert last use of __FUNCTION__ to __func__



Just about all of these have been converted to __func__, so convert the
last use.

Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 4307c14f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -256,7 +256,7 @@ static inline struct kmem_cache *cache_from_obj(struct kmem_cache *s, void *x)
		return cachep;

	pr_err("%s: Wrong slab cache. %s but object is from %s\n",
		__FUNCTION__, cachep->name, s->name);
	       __func__, cachep->name, s->name);
	WARN_ON_ONCE(1);
	return s;
}