1 /****************************************************************************** 2 * 3 * Copyright(c) 2009 - 2014 Intel Corporation. All rights reserved. 4 * Copyright (C) 2018 Intel Corporation 5 * 6 * This program is free software; you can redistribute it and/or modify it 7 * under the terms of version 2 of the GNU General Public License as 8 * published by the Free Software Foundation. 9 * 10 * This program is distributed in the hope that it will be useful, but WITHOUT 11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 13 * more details. 14 * 15 * The full GNU General Public License is included in this distribution in the 16 * file called LICENSE. 17 * 18 * Contact Information: 19 * Intel Linux Wireless <linuxwifi@intel.com> 20 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 21 * 22 *****************************************************************************/ 23 24 #include <linux/module.h> 25 26 /* sparse doesn't like tracepoint macros */ 27 #ifndef __CHECKER__ 28 #include "iwl-trans.h" 29 30 #define CREATE_TRACE_POINTS 31 #include "iwl-devtrace.h" 32 33 EXPORT_TRACEPOINT_SYMBOL(iwlwifi_dev_ucode_event); 34 EXPORT_TRACEPOINT_SYMBOL(iwlwifi_dev_ucode_cont_event); 35 EXPORT_TRACEPOINT_SYMBOL(iwlwifi_dev_ucode_wrap_event); 36 #endif 37