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 #include "iwl-devtrace.h"
16 
17 EXPORT_TRACEPOINT_SYMBOL(iwlwifi_dev_ucode_event);
18 EXPORT_TRACEPOINT_SYMBOL(iwlwifi_dev_ucode_cont_event);
19 EXPORT_TRACEPOINT_SYMBOL(iwlwifi_dev_ucode_wrap_event);
20 #endif
21