_begin.h 470 B

12345678910111213141516
  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. #include <linux/stringify.h>
  6. #define CAT2_STR_(t, s) __stringify(t/s)
  7. #define CAT2_STR(t, s) CAT2_STR_(t, s)
  8. #define I(...) __VA_ARGS__
  9. #endif
  10. #define REQ_GEN_PREFIX req-gen
  11. #define REQUEST_BEGIN CAT2_STR(REQ_GEN_PREFIX, _request-begin.h)
  12. #define REQUEST_END CAT2_STR(REQ_GEN_PREFIX, _request-end.h)