alistair23-linux/drivers/staging/wilc1000/wilc_memory.c
Greg Kroah-Hartman b6d9e0cb14 staging: wilc1000: remove WILC_MemoryFree
It's no longer needed, so remove the empty wrapper function.

Cc: Johnny Kim <johnny.kim@atmel.com>
Cc: Rachel Kim <rachel.kim@atmel.com>
Cc: Dean Lee <dean.lee@atmel.com>
Cc: Chris Park <chris.park@atmel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2015-08-14 19:22:30 -07:00

17 lines
286 B
C

#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;
}