diff options
author | Josh Boyer <jwboyer@linux.vnet.ibm.com> | 2008-04-22 02:50:27 +0200 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2008-04-24 12:57:34 +0200 |
commit | 96f1bb8a412aec3fc16306ef07c5bdb426edb615 (patch) | |
tree | ce6e6323720c36bd54eb34b7bb886c8b1ebbd050 /arch/ppc/kernel | |
parent | [POWERPC] 4xx: Fix duplicate phys_addr_t definition (diff) | |
download | linux-96f1bb8a412aec3fc16306ef07c5bdb426edb615.tar.xz linux-96f1bb8a412aec3fc16306ef07c5bdb426edb615.zip |
[POWERPC] Add strncmp to arch/ppc
Commit 0119536cd314ef95553604208c25bc35581f7f0a added an assembly
version of strncmp to PowerPC. However, it changed a common header
file between arch/ppc and arch/powerpc without adding strncmp to
arch/ppc. This fixes that omission so that arch/ppc links again.
Signed-off-by: Josh Boyer <jwboyer@linux.vnet.ibm.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/ppc/kernel')
-rw-r--r-- | arch/ppc/kernel/ppc_ksyms.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/ppc/kernel/ppc_ksyms.c b/arch/ppc/kernel/ppc_ksyms.c index 2ba659f401be..d9036ef0b658 100644 --- a/arch/ppc/kernel/ppc_ksyms.c +++ b/arch/ppc/kernel/ppc_ksyms.c @@ -88,6 +88,7 @@ EXPORT_SYMBOL(strncpy); EXPORT_SYMBOL(strcat); EXPORT_SYMBOL(strlen); EXPORT_SYMBOL(strcmp); +EXPORT_SYMBOL(strncmp); EXPORT_SYMBOL(csum_partial); EXPORT_SYMBOL(csum_partial_copy_generic); |