You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
300 B
9 lines
300 B
#ifndef _ASM_CRIS_INTMEM_H
|
|
#define _ASM_CRIS_INTMEM_H
|
|
|
|
void* crisv32_intmem_alloc(unsigned size, unsigned align);
|
|
void crisv32_intmem_free(void* addr);
|
|
void* crisv32_intmem_phys_to_virt(unsigned long addr);
|
|
unsigned long crisv32_intmem_virt_to_phys(void *addr);
|
|
|
|
#endif /* _ASM_CRIS_ARCH_INTMEM_H */
|
|
|