Forum Discussion
Altera_Forum
Honored Contributor
9 years agoIt would appear that is simply a compile error in your host code, under the free_map_info() function. I'm not sure what ACL_DEBUG() does, but as the error suggests.... it is expecting that "info->dma_handle" be an unsigned int, but it is actually a dma_addr_t type. You can try typecasting to an unsigned int, but I'm not sure that will give you the results you want (although it would likely suppress the error).