cfg80211: fix deadlock with rfkill/sched_scan by adding new mutex
[linux-2.6/btrfs-unstable.git] / arch / microblaze / include / asm / string.h
blobaec2f59298b879d063e7f48d04ad20602695143d
1 /*
2 * Copyright (C) 2006 Atmark Techno, Inc.
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file "COPYING" in the main directory of this archive
6 * for more details.
7 */
9 #ifndef _ASM_MICROBLAZE_STRING_H
10 #define _ASM_MICROBLAZE_STRING_H
12 #ifdef __KERNEL__
14 #define __HAVE_ARCH_MEMSET
15 #define __HAVE_ARCH_MEMCPY
16 #define __HAVE_ARCH_MEMMOVE
18 extern void *memset(void *, int, __kernel_size_t);
19 extern void *memcpy(void *, const void *, __kernel_size_t);
20 extern void *memmove(void *, const void *, __kernel_size_t);
22 #endif /* __KERNEL__ */
24 #endif /* _ASM_MICROBLAZE_STRING_H */