mirror of
				https://xff.cz/git/u-boot/
				synced 2025-10-30 18:05:48 +01:00 
			
		
		
		
	Move this struct into a header file so that dtoc can include it in its dt-platdata.c file. Signed-off-by: Simon Glass <sjg@chromium.org>
		
			
				
	
	
		
			15 lines
		
	
	
		
			235 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			235 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /* SPDX-License-Identifier: GPL-2.0+ */
 | |
| /*
 | |
|  * Copyright 2020 Google LLC
 | |
|  * Written by Simon Glass <sjg@chromium.org>
 | |
|  */
 | |
| 
 | |
| #ifndef __asn_i2c_h
 | |
| #define __asn_i2c_h
 | |
| 
 | |
| struct sandbox_i2c_priv {
 | |
| 	bool test_mode;
 | |
| };
 | |
| 
 | |
| #endif /* __asn_i2c_h */
 |