Dmitry V. Levin | e36c72c | 2014-12-03 20:56:36 +0000 | [diff] [blame] | 1 | #include "defs.h" |
2 | |||||
3 | #ifdef BFIN | ||||
4 | |||||
5 | #include <bfin_sram.h> | ||||
6 | |||||
7 | #include "xlat/sram_alloc_flags.h" | ||||
8 | |||||
9 | int | ||||
10 | sys_sram_alloc(struct tcb *tcp) | ||||
11 | { | ||||
12 | if (entering(tcp)) { | ||||
13 | /* size */ | ||||
14 | tprintf("%lu, ", tcp->u_arg[0]); | ||||
15 | /* flags */ | ||||
16 | printflags(sram_alloc_flags, tcp->u_arg[1], "???_SRAM"); | ||||
17 | } | ||||
18 | return 1; | ||||
19 | } | ||||
20 | |||||
21 | #endif /* BFIN */ |