1:
void* AG903_VRAMMgrMallocAlign(int32_t mplid, uint32_t align, uint32_t blksz)
2: {
3: int32_t result;
4:
void* p_blk;
5:
6: result =
AG903_OSWprGetMplAlign(mplid, align, blksz, &p_blk);
7:
if(
AG903_ENONE != result) {
8: p_blk = NULL;
9: }
10:
11:
return p_blk;
12: }