Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/arch/powerpc/perf/req-gen/_begin.h
26481 views
1
/* SPDX-License-Identifier: GPL-2.0 */
2
/* Include paths to be used in interface defining headers */
3
#ifndef POWERPC_PERF_REQ_GEN_H_
4
#define POWERPC_PERF_REQ_GEN_H_
5
6
#include <linux/stringify.h>
7
8
#define CAT2_STR_(t, s) __stringify(t/s)
9
#define CAT2_STR(t, s) CAT2_STR_(t, s)
10
#define I(...) __VA_ARGS__
11
12
#endif
13
14
#define REQ_GEN_PREFIX req-gen
15
#define REQUEST_BEGIN CAT2_STR(REQ_GEN_PREFIX, _request-begin.h)
16
#define REQUEST_END CAT2_STR(REQ_GEN_PREFIX, _request-end.h)
17
18