blob: 01a2a4df5271aa5d920e95dd492b63c183194cb7 (
plain)
1
2
3
4
5
6
7
8
|
#ifndef RISCV_VMAP_H
#define RISCV_VMAP_H
void *riscv_vmap(struct page **pages, unsigned int count, unsigned long flags,
pgprot_t prot, int cached);
void test_riscv_vmap(void);
#endif
|