2007-05-02 17:27:06 +00:00
|
|
|
/* const.h: Macros for dealing with constants. */
|
|
|
|
|
2007-05-08 07:31:11 +00:00
|
|
|
#ifndef _LINUX_CONST_H
|
|
|
|
#define _LINUX_CONST_H
|
2007-05-02 17:27:06 +00:00
|
|
|
|
|
|
|
/* Some constant macros are used in both assembler and
|
|
|
|
* C code. Therefore we cannot annotate them always with
|
2007-05-08 07:31:11 +00:00
|
|
|
* 'UL' and other type specifiers unilaterally. We
|
2007-05-02 17:27:06 +00:00
|
|
|
* use the following macros to deal with this.
|
2008-01-30 12:32:42 +00:00
|
|
|
*
|
|
|
|
* Similarly, _AT() will cast an expression with a type in C, but
|
|
|
|
* leave it unchanged in asm.
|
2007-05-02 17:27:06 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef __ASSEMBLY__
|
|
|
|
#define _AC(X,Y) X
|
2008-01-30 12:32:42 +00:00
|
|
|
#define _AT(T,X) X
|
2007-05-02 17:27:06 +00:00
|
|
|
#else
|
|
|
|
#define __AC(X,Y) (X##Y)
|
|
|
|
#define _AC(X,Y) __AC(X,Y)
|
2008-01-30 12:32:42 +00:00
|
|
|
#define _AT(T,X) ((T)(X))
|
2007-05-02 17:27:06 +00:00
|
|
|
#endif
|
|
|
|
|
2007-05-08 07:31:11 +00:00
|
|
|
#endif /* !(_LINUX_CONST_H) */
|