forked from mirrors/linux
		
	 310f80d617
			
		
	
	
		310f80d617
		
	
	
	
	
		
			
			There's only a single caller of vexpress_config_set_master() from vexpress-sysreg.c. Let's just make the registers needed available to vexpress-config and move all the code there. The registers needed aren't used anywhere else either. With this, we can get rid of the private API between these 2 drivers. Cc: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> Cc: Linus Walleij <linus.walleij@linaro.org> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Acked-by: Liviu Dudau <liviu.dudau@arm.com> Acked-by: Sudeep Holla <sudeep.holla@arm.com> Acked-by: Lee Jones <lee.jones@linaro.org> Signed-off-by: Rob Herring <robh@kernel.org>
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			297 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			297 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /* SPDX-License-Identifier: GPL-2.0-only */
 | |
| /*
 | |
|  *
 | |
|  * Copyright (C) 2012 ARM Limited
 | |
|  */
 | |
| 
 | |
| #ifndef _LINUX_VEXPRESS_H
 | |
| #define _LINUX_VEXPRESS_H
 | |
| 
 | |
| #include <linux/device.h>
 | |
| #include <linux/regmap.h>
 | |
| 
 | |
| /* Config regmap API */
 | |
| 
 | |
| struct regmap *devm_regmap_init_vexpress_config(struct device *dev);
 | |
| 
 | |
| #endif
 |