summaryrefslogtreecommitdiff
path: root/drivers/staging/csr/csr_util.c
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-07-20 21:35:23 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-07-20 21:35:23 (GMT)
commit943b0022df97fbf2a34c4d6cb081e8fcb44032b9 (patch)
tree3628fb098ea9ba91971c5711b0796158f4f50c18 /drivers/staging/csr/csr_util.c
parent310d5940f521840a92e2572603021c9b58aeab5e (diff)
downloadlinux-fsl-qoriq-943b0022df97fbf2a34c4d6cb081e8fcb44032b9.tar.xz
staging: csr: remove CsrStrCmp
Only CsrUtf8StrCmp() was calling it, and nothing was calling CsrUtf8StrCmp(), so remove both of them. Cc: Mikko Virkkilä <mikko.virkkila@bluegiga.com> Cc: Lauri Hintsala <Lauri.Hintsala@bluegiga.com> Cc: Riku Mettälä <riku.mettala@bluegiga.com> Cc: Veli-Pekka Peltola <veli-pekka.peltola@bluegiga.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/csr/csr_util.c')
-rw-r--r--drivers/staging/csr/csr_util.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/staging/csr/csr_util.c b/drivers/staging/csr/csr_util.c
index 87075cd..d3b8271 100644
--- a/drivers/staging/csr/csr_util.c
+++ b/drivers/staging/csr/csr_util.c
@@ -51,11 +51,6 @@ size_t CsrStrLen(const char *string)
}
EXPORT_SYMBOL_GPL(CsrStrLen);
-s32 CsrStrCmp(const char *string1, const char *string2)
-{
- return strcmp(string1, string2);
-}
-
s32 CsrStrNCmp(const char *string1, const char *string2, size_t count)
{
return strncmp(string1, string2, count);