Merge branch 'x86-platform-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[pandora-kernel.git] / drivers / staging / bcm / Osal_Misc.c
1         /*++
2
3         Copyright (c) Beceem Communications Inc.
4
5         Module Name:
6                 WIN_Misc.c
7
8         Abstract:
9                 Implements the Miscelanneous OS Construts
10                         Linked Lists
11                         Dispatcher Objects(Events,Semaphores,Spin Locks and the like)
12                         Files
13
14         Revision History:
15                 Who         When        What
16                 --------    --------    ----------------------------------------------
17                 Name            Date            Created/reviewed/modified
18                 Rajeev          24/1/08         Created
19         Notes:
20
21         --*/
22 #include "headers.h"
23
24 bool OsalMemCompare(void *dest, void *src, UINT len)
25 {
26         return (memcmp(src, dest, len));
27 }