Remove unused and obsolete macros do_dcache_flush and do_icache_invalidate

modified:   stub/src/arch/arm64/v8/macros.S
This commit is contained in:
John Reiser 2017-06-14 09:35:05 -07:00
parent 8ada92a69f
commit e58873044b

View File

@ -61,17 +61,5 @@ fp .req x29
// orrcs r0,r0,#(1<<31) // force negative on error; FIXME: needed?
.endm
.macro do_dcache_flush // In: r0=addr; r1=len
mov w3,#1 // _sys_dcache_flush
mov w8,#(1<<31) // syscall number?
svc #0
.endm
.macro do_icache_invalidate // In: r0=addr; r1=len
mov w3,#0 // _sys_icache_invalidate
mov w8,#(1<<31) // syscall number?
svc #0
.endm
#endif //}
// vi:ts=8:et:nowrap