ca64d84e93
To get in line with: 8165b57bca21 ("linux/const.h: Extract common header for vDSO") And silence this tools/perf/ build warning: Warning: Kernel ABI header at 'tools/include/linux/const.h' differs from latest version at 'include/linux/const.h' diff -u tools/include/linux/const.h include/linux/const.h Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: Jiri Olsa <jolsa@kernel.org> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Vincenzo Frascino <vincenzo.frascino@arm.com> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
11 lines
196 B
C
11 lines
196 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef __VDSO_CONST_H
|
|
#define __VDSO_CONST_H
|
|
|
|
#include <uapi/linux/const.h>
|
|
|
|
#define UL(x) (_UL(x))
|
|
#define ULL(x) (_ULL(x))
|
|
|
|
#endif /* __VDSO_CONST_H */
|