aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/wilc1000/wilc_memory.c
blob: e90a95705a7d5332725fc903a269f19b6fd42005 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "wilc_memory.h"

/*!
 *  @author	syounan
 *  @date	18 Aug 2010
 *  @version	1.0
 */
void *WILC_MemoryAlloc(u32 u32Size, tstrWILC_MemoryAttrs *strAttrs,
		       char *pcFileName, u32 u32LineNo)
{
	if (u32Size > 0)
		return kmalloc(u32Size, GFP_ATOMIC);
	else
		return NULL;
}