mirror of
				https://github.com/torvalds/linux.git
				synced 2025-10-31 16:48:26 +02:00 
			
		
		
		
	 06dcc4c9ba
			
		
	
	
		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>
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			492 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			16 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
 |