1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 /* 3 * Process execution related definitions for the Hexagon architecture 4 * 5 * Copyright (c) 2010-2011, The Linux Foundation. All rights reserved. 6 */ 7 8 #ifndef _ASM_EXEC_H 9 #define _ASM_EXEC_H 10 11 /* Should probably shoot for an 8-byte aligned stack pointer */ 12 #define STACK_MASK (~7) 13 #define arch_align_stack(x) (x & STACK_MASK) 14 15 #endif /* _ASM_EXEC_H */ 16