mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-22 20:30:58 +02:00
16 lines
260 B
C
16 lines
260 B
C
#include <linux/pci.h>
|
|
#include "tbs_pcie-reg.h"
|
|
#include "tbs_pcie.h"
|
|
void *malloc(size_t __size);
|
|
void *malloc(size_t __size)
|
|
{
|
|
return kzalloc(__size, GFP_KERNEL);
|
|
}
|
|
void free(void *__ptr);
|
|
void free(void *__ptr)
|
|
{
|
|
if(__ptr)
|
|
kfree(__ptr);
|
|
}
|
|
|