drm/panthor: Don't add write fences to the shared BOs
[drm/drm-misc.git] / arch / x86 / realmode / rm / stack.S
blob0fca64061ad2f4fcaeb93275d4f5ceb929b90576
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * Common heap and stack allocations
4  */
6 #include <linux/linkage.h>
8         .data
9 SYM_DATA(HEAP,          .long rm_heap)
10 SYM_DATA(heap_end,      .long rm_stack)
12         .bss
13         .balign 16
14 SYM_DATA(rm_heap,       .space 2048)
16 SYM_DATA_START(rm_stack)
17         .space  2048
18 SYM_DATA_END_LABEL(rm_stack, SYM_L_GLOBAL, rm_stack_end)