1*4882a593Smuzhiyun /* SPDX-License-Identifier: GPL-2.0 */ 2*4882a593Smuzhiyun #ifndef _ASM_S390_ASM_CONST_H 3*4882a593Smuzhiyun #define _ASM_S390_ASM_CONST_H 4*4882a593Smuzhiyun 5*4882a593Smuzhiyun #ifdef __ASSEMBLY__ 6*4882a593Smuzhiyun # define stringify_in_c(...) __VA_ARGS__ 7*4882a593Smuzhiyun #else 8*4882a593Smuzhiyun /* This version of stringify will deal with commas... */ 9*4882a593Smuzhiyun # define __stringify_in_c(...) #__VA_ARGS__ 10*4882a593Smuzhiyun # define stringify_in_c(...) __stringify_in_c(__VA_ARGS__) " " 11*4882a593Smuzhiyun #endif 12*4882a593Smuzhiyun #endif /* _ASM_S390_ASM_CONST_H */ 13