summaryrefslogtreecommitdiffstats
path: root/drivers/staging/bcm/Osal_Misc.c
blob: feefd20a529166f7333232af8a09e6f820d70c1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
	/*++

	Copyright (c) Beceem Communications Inc.

	Module Name:
		WIN_Misc.c

	Abstract:
		Implements the Miscelanneous OS Construts
			Linked Lists
			Dispatcher Objects(Events,Semaphores,Spin Locks and the like)
			Files

	Revision History:
		Who         When        What
		--------    --------    ----------------------------------------------
		Name		Date		Created/reviewed/modified
		Rajeev		24/1/08		Created
	Notes:

	--*/
#include "headers.h"

bool OsalMemCompare(void *dest, void *src, UINT len)
{
	return (memcmp(src, dest, len));
}
OpenPOWER on IntegriCloud