mirror of
				https://source.denx.de/u-boot/u-boot.git
				synced 2025-11-04 02:11:25 +01:00 
			
		
		
		
	With the new of-platdata, these need to be available to dt_platdata.c so must be in header files. Move them. Signed-off-by: Simon Glass <sjg@chromium.org>
		
			
				
	
	
		
			17 lines
		
	
	
		
			270 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			270 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* SPDX-License-Identifier: GPL-2.0+ */
 | 
						|
/*
 | 
						|
 * Copyright 2020 Google LLC
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef ASM_ARCH_PMC_H
 | 
						|
#define ASM_ARCH_PMC_H
 | 
						|
 | 
						|
struct apl_pmc_plat {
 | 
						|
#if CONFIG_IS_ENABLED(OF_PLATDATA)
 | 
						|
	struct dtd_intel_apl_pmc dtplat;
 | 
						|
#endif
 | 
						|
	pci_dev_t bdf;
 | 
						|
};
 | 
						|
 | 
						|
#endif	/* ASM_ARCH_PMC_H */
 |