diff options
author | Joe Perches <joe@perches.com> | 2014-08-06 16:04:53 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-08-06 18:01:15 -0700 |
commit | c42e5715617232563f0cf9f231d86b5133c4487e (patch) | |
tree | d9890f46c8f718cd701fe76c819f03b0ceaed102 /mm/slab.h | |
parent | 4307c14f3c77bc0cb0facfc9c67c7872505aaedf (diff) | |
download | linux-exynos-c42e5715617232563f0cf9f231d86b5133c4487e.tar.gz linux-exynos-c42e5715617232563f0cf9f231d86b5133c4487e.tar.bz2 linux-exynos-c42e5715617232563f0cf9f231d86b5133c4487e.zip |
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: Joe Perches <joe@perches.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/slab.h')
-rw-r--r-- | mm/slab.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/slab.h b/mm/slab.h index 928823e17e58..0e0fdd365840 100644 --- a/mm/slab.h +++ b/mm/slab.h @@ -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; } |