mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 06:01:57 +00:00
06dcc4c9ba
It would be possible to put any statement in TP_fast_assign(). This commit obsoletes the helper function and put its statements to TP_fast_assign() for the code simplicity. Link: https://lore.kernel.org/r/20240712003010.87341-1-o-takashi@sakamocchi.jp Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
17 lines
492 B
C
17 lines
492 B
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
// Copyright (c) 2024 Takashi Sakamoto
|
|
|
|
#include <linux/types.h>
|
|
#include <linux/err.h>
|
|
#include "packet-header-definitions.h"
|
|
#include "phy-packet-definitions.h"
|
|
|
|
#define CREATE_TRACE_POINTS
|
|
#include <trace/events/firewire.h>
|
|
|
|
#ifdef TRACEPOINTS_ENABLED
|
|
EXPORT_TRACEPOINT_SYMBOL_GPL(isoc_inbound_single_completions);
|
|
EXPORT_TRACEPOINT_SYMBOL_GPL(isoc_inbound_multiple_completions);
|
|
EXPORT_TRACEPOINT_SYMBOL_GPL(isoc_outbound_completions);
|
|
#endif
|