trace.c 275 B

123456789101112131415
  1. // SPDX-License-Identifier: ISC
  2. /*
  3. * Copyright (C) 2016 Felix Fietkau <[email protected]>
  4. */
  5. #include <linux/module.h>
  6. #ifndef __CHECKER__
  7. #define CREATE_TRACE_POINTS
  8. #include "trace.h"
  9. EXPORT_TRACEPOINT_SYMBOL_GPL(mac_txdone);
  10. EXPORT_TRACEPOINT_SYMBOL_GPL(dev_irq);
  11. #endif