forked from mirrors/linux
		
	 24c9d423e8
			
		
	
	
		24c9d423e8
		
	
	
	
	
		
			
			It was previously noted that Kconfig complained about unmet dependencies
when trying to configure skx_edac together with CONFIG_ACPI=n. First fix
for this checked for ACPI when doing
  select ACPI_ADXL
but this required stub functions for the case where ACPI wasn't
selected. It also allowed building a driver that didn't actually work
for a system that has non-volatile DIMMs.
Arnd Bergmann pointed out that the right fix is to make EDAC_SKX
"depend on ACPI".
Fixes: a324e9396c ("EDAC, skx: Fix randconfig builds")
Signed-off-by: Tony Luck <tony.luck@intel.com>
Signed-off-by: Borislav Petkov <bp@suse.de>
CC: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
CC: Arnd Bergmann <arnd@arndb.de>
CC: Mauro Carvalho Chehab <mchehab@kernel.org>
CC: linux-edac <linux-edac@vger.kernel.org>
CC: qiuxu.zhuo@intel.com
Link: http://lkml.kernel.org/r/20181106183914.GA26731@agluck-desk
		
	
			
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			310 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			310 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /* SPDX-License-Identifier: GPL-2.0 */
 | |
| /*
 | |
|  * Address translation interface via ACPI DSM.
 | |
|  * Copyright (C) 2018 Intel Corporation
 | |
|  */
 | |
| 
 | |
| #ifndef _LINUX_ADXL_H
 | |
| #define _LINUX_ADXL_H
 | |
| 
 | |
| const char * const *adxl_get_component_names(void);
 | |
| int adxl_decode(u64 addr, u64 component_values[]);
 | |
| 
 | |
| #endif /* _LINUX_ADXL_H */
 |