mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	mfd: Remove unneeded 'fast_io' parameter in regmap_config
When using MMIO with regmap, fast_io is implied. No need to set it again. Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> Link: https://lore.kernel.org/r/20250813161517.4746-10-wsa+renesas@sang-engineering.com Signed-off-by: Lee Jones <lee@kernel.org>
This commit is contained in:
		
							parent
							
								
									9c5ad8374b
								
							
						
					
					
						commit
						fcbe47a83a
					
				
					 4 changed files with 0 additions and 4 deletions
				
			
		| 
						 | 
					@ -101,7 +101,6 @@ static const struct regmap_config exynos_lpass_reg_conf = {
 | 
				
			||||||
	.reg_stride	= 4,
 | 
						.reg_stride	= 4,
 | 
				
			||||||
	.val_bits	= 32,
 | 
						.val_bits	= 32,
 | 
				
			||||||
	.max_register	= 0xfc,
 | 
						.max_register	= 0xfc,
 | 
				
			||||||
	.fast_io	= true,
 | 
					 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static void exynos_lpass_disable_lpass(void *data)
 | 
					static void exynos_lpass_disable_lpass(void *data)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -17,7 +17,6 @@
 | 
				
			||||||
#include <linux/regmap.h>
 | 
					#include <linux/regmap.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static const struct regmap_config mx25_tsadc_regmap_config = {
 | 
					static const struct regmap_config mx25_tsadc_regmap_config = {
 | 
				
			||||||
	.fast_io = true,
 | 
					 | 
				
			||||||
	.max_register = 8,
 | 
						.max_register = 8,
 | 
				
			||||||
	.reg_bits = 32,
 | 
						.reg_bits = 32,
 | 
				
			||||||
	.val_bits = 32,
 | 
						.val_bits = 32,
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -19,7 +19,6 @@ static const struct regmap_config stm32_lptimer_regmap_cfg = {
 | 
				
			||||||
	.val_bits = 32,
 | 
						.val_bits = 32,
 | 
				
			||||||
	.reg_stride = sizeof(u32),
 | 
						.reg_stride = sizeof(u32),
 | 
				
			||||||
	.max_register = STM32_LPTIM_MAX_REGISTER,
 | 
						.max_register = STM32_LPTIM_MAX_REGISTER,
 | 
				
			||||||
	.fast_io = true,
 | 
					 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static int stm32_lptimer_detect_encoder(struct stm32_lptimer *ddata)
 | 
					static int stm32_lptimer_detect_encoder(struct stm32_lptimer *ddata)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -72,7 +72,6 @@ static const struct regmap_config sun4i_gpadc_regmap_config = {
 | 
				
			||||||
	.reg_bits = 32,
 | 
						.reg_bits = 32,
 | 
				
			||||||
	.val_bits = 32,
 | 
						.val_bits = 32,
 | 
				
			||||||
	.reg_stride = 4,
 | 
						.reg_stride = 4,
 | 
				
			||||||
	.fast_io = true,
 | 
					 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static const struct of_device_id sun4i_gpadc_of_match[] = {
 | 
					static const struct of_device_id sun4i_gpadc_of_match[] = {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue