staging/bcm: add sparse annotations
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / staging / bcm / Osal_Misc.c
blobfeefd20a529166f7333232af8a09e6f820d70c1f
1 /*++
3 Copyright (c) Beceem Communications Inc.
5 Module Name:
6 WIN_Misc.c
8 Abstract:
9 Implements the Miscelanneous OS Construts
10 Linked Lists
11 Dispatcher Objects(Events,Semaphores,Spin Locks and the like)
12 Files
14 Revision History:
15 Who When What
16 -------- -------- ----------------------------------------------
17 Name Date Created/reviewed/modified
18 Rajeev 24/1/08 Created
19 Notes:
21 --*/
22 #include "headers.h"
24 bool OsalMemCompare(void *dest, void *src, UINT len)
26 return (memcmp(src, dest, len));