mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	Add a new object for shared test utilities Signed-off-by: Jeremy Kerr <jk@codeconstruct.com.au> Signed-off-by: David S. Miller <davem@davemloft.net>
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			403 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			403 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* SPDX-License-Identifier: GPL-2.0 */
 | 
						|
 | 
						|
#ifndef __NET_MCTP_TEST_UTILS_H
 | 
						|
#define __NET_MCTP_TEST_UTILS_H
 | 
						|
 | 
						|
#include <kunit/test.h>
 | 
						|
 | 
						|
#define MCTP_DEV_TEST_MTU	68
 | 
						|
 | 
						|
struct mctp_test_dev {
 | 
						|
	struct net_device *ndev;
 | 
						|
	struct mctp_dev *mdev;
 | 
						|
};
 | 
						|
 | 
						|
struct mctp_test_dev;
 | 
						|
 | 
						|
struct mctp_test_dev *mctp_test_create_dev(void);
 | 
						|
void mctp_test_destroy_dev(struct mctp_test_dev *dev);
 | 
						|
 | 
						|
#endif /* __NET_MCTP_TEST_UTILS_H */
 |