1 // SPDX-License-Identifier: GPL-2.0-only
2 /******************************************************************************
3  *
4  * Copyright(c) 2009 - 2014 Intel Corporation. All rights reserved.
5  * Copyright (C) 2018 Intel Corporation
6  *****************************************************************************/
7 
8 #include <linux/module.h>
9 
10 /* sparse doesn't like tracepoint macros */
11 #ifndef __CHECKER__
12 #include "iwl-trans.h"
13 
14 #define CREATE_TRACE_POINTS
15 #ifdef CONFIG_CC_IS_GCC
16 #pragma GCC diagnostic ignored "-Wsuggest-attribute=format"
17 #endif
18 #include "iwl-devtrace.h"
19 
20 EXPORT_TRACEPOINT_SYMBOL(iwlwifi_dev_ucode_event);
21 EXPORT_TRACEPOINT_SYMBOL(iwlwifi_dev_ucode_cont_event);
22 EXPORT_TRACEPOINT_SYMBOL(iwlwifi_dev_ucode_wrap_event);
23 #endif
24