mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-09 14:14:00 +08:00
staging: csr: remove CsrMemCalloc()
No one calls it, so it doesn't need to be here. Cc: Mikko Virkkilä <mikko.virkkila@bluegiga.com> Cc: Lauri Hintsala <Lauri.Hintsala@bluegiga.com> Cc: Riku Mettälä <riku.mettala@bluegiga.com> Cc: Veli-Pekka Peltola <veli-pekka.peltola@bluegiga.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
70128792b7
commit
7de2c5b6ae
@ -147,35 +147,6 @@ void CsrThreadSleep(u16 sleepTimeInMs)
|
|||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(CsrThreadSleep);
|
EXPORT_SYMBOL_GPL(CsrThreadSleep);
|
||||||
|
|
||||||
/*----------------------------------------------------------------------------*
|
|
||||||
* NAME
|
|
||||||
* CsrMemCalloc
|
|
||||||
*
|
|
||||||
* DESCRIPTION
|
|
||||||
* Allocate dynamic memory of a given size calculated as the
|
|
||||||
* numberOfElements times the elementSize.
|
|
||||||
*
|
|
||||||
* RETURNS
|
|
||||||
* Pointer to allocated memory, or NULL in case of failure.
|
|
||||||
* Allocated memory is zero initialised.
|
|
||||||
*
|
|
||||||
*----------------------------------------------------------------------------*/
|
|
||||||
void *CsrMemCalloc(size_t numberOfElements, size_t elementSize)
|
|
||||||
{
|
|
||||||
void *buf;
|
|
||||||
size_t size;
|
|
||||||
|
|
||||||
size = numberOfElements * elementSize;
|
|
||||||
|
|
||||||
buf = kmalloc(size, GFP_KERNEL);
|
|
||||||
if (buf != NULL)
|
|
||||||
{
|
|
||||||
memset(buf, 0, size);
|
|
||||||
}
|
|
||||||
|
|
||||||
return buf;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*----------------------------------------------------------------------------*
|
/*----------------------------------------------------------------------------*
|
||||||
* NAME
|
* NAME
|
||||||
* CsrMemAllocDma
|
* CsrMemAllocDma
|
||||||
|
@ -242,27 +242,6 @@ CsrResult CsrThreadEqual(CsrThreadHandle *threadHandle1, CsrThreadHandle *thread
|
|||||||
void CsrThreadSleep(u16 sleepTimeInMs);
|
void CsrThreadSleep(u16 sleepTimeInMs);
|
||||||
|
|
||||||
#ifndef CSR_PMEM_DEBUG_ENABLE
|
#ifndef CSR_PMEM_DEBUG_ENABLE
|
||||||
/*----------------------------------------------------------------------------*
|
|
||||||
* NAME
|
|
||||||
* CsrMemCalloc
|
|
||||||
*
|
|
||||||
* DESCRIPTION
|
|
||||||
* Allocate dynamic memory of a given size calculated as the
|
|
||||||
* numberOfElements times the elementSize.
|
|
||||||
*
|
|
||||||
* RETURNS
|
|
||||||
* Pointer to allocated memory, or NULL in case of failure.
|
|
||||||
* Allocated memory is zero initialised.
|
|
||||||
*
|
|
||||||
*----------------------------------------------------------------------------*/
|
|
||||||
#ifdef CSR_MEM_DEBUG
|
|
||||||
void *CsrMemCallocDebug(size_t numberOfElements, size_t elementSize,
|
|
||||||
const char *file, u32 line);
|
|
||||||
#define CsrMemCalloc(cnt, sz) CsrMemAllocDebug((cnt), (sz), __FILE__, __LINE__)
|
|
||||||
#else
|
|
||||||
void *CsrMemCalloc(size_t numberOfElements, size_t elementSize);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/*----------------------------------------------------------------------------*
|
/*----------------------------------------------------------------------------*
|
||||||
* NAME
|
* NAME
|
||||||
* CsrMemAllocDma
|
* CsrMemAllocDma
|
||||||
@ -288,8 +267,6 @@ void *CsrMemAllocDma(size_t size);
|
|||||||
|
|
||||||
#include "csr_pmem.h"
|
#include "csr_pmem.h"
|
||||||
|
|
||||||
#define CsrMemCalloc(numberOfElements, elementSize) CsrPmemDebugAlloc((numberOfElements * elementSize), CSR_PMEM_DEBUG_TYPE_MEM_CALLOC, __FILE__, __LINE__)
|
|
||||||
|
|
||||||
#define CsrMemAllocDma(size) CsrPmemDebugAlloc(size, CSR_PMEM_DEBUG_TYPE_MEM_ALLOC_DMA, __FILE__, __LINE__)
|
#define CsrMemAllocDma(size) CsrPmemDebugAlloc(size, CSR_PMEM_DEBUG_TYPE_MEM_ALLOC_DMA, __FILE__, __LINE__)
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user