Commit 428759bc authored by Hirofumi Ogawa's avatar Hirofumi Ogawa Committed by Linus Torvalds

[PATCH] Inline vfat_strnicmp()

From Ren <l.s.r@web.de>

the function vfat_strnicmp() has just one callsite. Inlining it
actually shrinks vfat.o slightly.
parent 602e2806
...@@ -106,7 +106,7 @@ vfat_toupper(struct nls_table *t, unsigned char c) ...@@ -106,7 +106,7 @@ vfat_toupper(struct nls_table *t, unsigned char c)
return nc ? nc : c; return nc ? nc : c;
} }
static int static inline int
vfat_strnicmp(struct nls_table *t, const unsigned char *s1, vfat_strnicmp(struct nls_table *t, const unsigned char *s1,
const unsigned char *s2, int len) const unsigned char *s2, int len)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment