summaryrefslogtreecommitdiffstats
path: root/src/arch/riscv/include
diff options
context:
space:
mode:
authorMichael Brown2025-05-19 17:16:33 +0200
committerMichael Brown2025-05-19 20:36:25 +0200
commit140ceeeb089f605e29592697239a28bb4db1a7e2 (patch)
tree1f265902b0ef8a0b0611f1a2f67ec7cf68fca74b /src/arch/riscv/include
parent[uheap] Add a generic external heap based on the system memory map (diff)
downloadipxe-140ceeeb089f605e29592697239a28bb4db1a7e2.tar.gz
ipxe-140ceeeb089f605e29592697239a28bb4db1a7e2.tar.xz
ipxe-140ceeeb089f605e29592697239a28bb4db1a7e2.zip
[riscv] Use generic external heap based on the system memory map
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/arch/riscv/include')
-rw-r--r--src/arch/riscv/include/bits/umalloc.h14
-rw-r--r--src/arch/riscv/include/ipxe/sbi_umalloc.h18
2 files changed, 0 insertions, 32 deletions
diff --git a/src/arch/riscv/include/bits/umalloc.h b/src/arch/riscv/include/bits/umalloc.h
deleted file mode 100644
index a7171ca2c..000000000
--- a/src/arch/riscv/include/bits/umalloc.h
+++ /dev/null
@@ -1,14 +0,0 @@
-#ifndef _BITS_UMALLOC_H
-#define _BITS_UMALLOC_H
-
-/** @file
- *
- * RISCV-specific user memory allocation API implementations
- *
- */
-
-FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
-
-#include <ipxe/sbi_umalloc.h>
-
-#endif /* _BITS_UMALLOC_H */
diff --git a/src/arch/riscv/include/ipxe/sbi_umalloc.h b/src/arch/riscv/include/ipxe/sbi_umalloc.h
deleted file mode 100644
index 5763239fb..000000000
--- a/src/arch/riscv/include/ipxe/sbi_umalloc.h
+++ /dev/null
@@ -1,18 +0,0 @@
-#ifndef _IPXE_SBI_UMALLOC_H
-#define _IPXE_SBI_UMALLOC_H
-
-/** @file
- *
- * External memory allocation
- *
- */
-
-FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
-
-#ifdef UMALLOC_SBI
-#define UMALLOC_PREFIX_sbi
-#else
-#define UMALLOC_PREFIX_sbi __sbi_
-#endif
-
-#endif /* _IPXE_SBI_UMALLOC_H */