2019-05-29 23:57:37 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2010-01-15 21:42:59 +00:00
|
|
|
/******************************************************************************
|
|
|
|
*
|
2013-12-30 11:15:54 +00:00
|
|
|
* Copyright(c) 2009 - 2014 Intel Corporation. All rights reserved.
|
2018-05-23 11:39:26 +00:00
|
|
|
* Copyright (C) 2018 Intel Corporation
|
2010-01-15 21:42:59 +00:00
|
|
|
*
|
|
|
|
* Contact Information:
|
2015-11-17 13:39:56 +00:00
|
|
|
* Intel Linux Wireless <linuxwifi@intel.com>
|
2010-01-15 21:42:59 +00:00
|
|
|
* Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
|
2009-10-02 20:44:02 +00:00
|
|
|
#include <linux/module.h>
|
|
|
|
|
|
|
|
/* sparse doesn't like tracepoint macros */
|
|
|
|
#ifndef __CHECKER__
|
2011-10-14 19:54:44 +00:00
|
|
|
#include "iwl-trans.h"
|
2010-03-23 06:55:39 +00:00
|
|
|
|
2009-10-02 20:44:02 +00:00
|
|
|
#define CREATE_TRACE_POINTS
|
|
|
|
#include "iwl-devtrace.h"
|
|
|
|
|
|
|
|
EXPORT_TRACEPOINT_SYMBOL(iwlwifi_dev_ucode_event);
|
2009-12-10 22:37:26 +00:00
|
|
|
EXPORT_TRACEPOINT_SYMBOL(iwlwifi_dev_ucode_cont_event);
|
|
|
|
EXPORT_TRACEPOINT_SYMBOL(iwlwifi_dev_ucode_wrap_event);
|
2009-10-02 20:44:02 +00:00
|
|
|
#endif
|