mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-03 18:20:25 +02:00 
			
		
		
		
	regulator: Set PROBE_PREFER_ASYNCHRONOUS for drivers that are newer than 6.1
This follows on the change ("regulator: Set PROBE_PREFER_ASYNCHRONOUS
for drivers that existed in 4.14") but changes regulators that were
not present in kernel 6.1.
Signed-off-by: Douglas Anderson <dianders@chromium.org>
Link: https://lore.kernel.org/r/20230316125351.7.I31771918f1d8dbe4bfb9f1fef7ff987f2b7504b5@changeid
Signed-off-by: Mark Brown <broonie@kernel.org>
			
			
This commit is contained in:
		
							parent
							
								
									41cff178e3
								
							
						
					
					
						commit
						bdce47bb19
					
				
					 4 changed files with 4 additions and 0 deletions
				
			
		| 
						 | 
				
			
			@ -153,6 +153,7 @@ MODULE_DEVICE_TABLE(i2c, max20411_id);
 | 
			
		|||
static struct i2c_driver max20411_i2c_driver = {
 | 
			
		||||
	.driver	= {
 | 
			
		||||
		.name = "max20411",
 | 
			
		||||
		.probe_type = PROBE_PREFER_ASYNCHRONOUS,
 | 
			
		||||
		.of_match_table	= of_max20411_match_tbl,
 | 
			
		||||
	},
 | 
			
		||||
	.probe_new = max20411_probe,
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -439,6 +439,7 @@ MODULE_DEVICE_TABLE(platform, mt6357_platform_ids);
 | 
			
		|||
static struct platform_driver mt6357_regulator_driver = {
 | 
			
		||||
	.driver = {
 | 
			
		||||
		.name = "mt6357-regulator",
 | 
			
		||||
		.probe_type = PROBE_PREFER_ASYNCHRONOUS,
 | 
			
		||||
	},
 | 
			
		||||
	.probe = mt6357_regulator_probe,
 | 
			
		||||
	.id_table = mt6357_platform_ids,
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -279,6 +279,7 @@ MODULE_DEVICE_TABLE(of, rt5739_device_table);
 | 
			
		|||
static struct i2c_driver rt5739_driver = {
 | 
			
		||||
	.driver = {
 | 
			
		||||
		.name = "rt5739",
 | 
			
		||||
		.probe_type = PROBE_PREFER_ASYNCHRONOUS,
 | 
			
		||||
		.of_match_table = rt5739_device_table,
 | 
			
		||||
	},
 | 
			
		||||
	.probe_new = rt5739_probe,
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -483,6 +483,7 @@ MODULE_DEVICE_TABLE(of, rt6190_of_dev_table);
 | 
			
		|||
static struct i2c_driver rt6190_driver = {
 | 
			
		||||
	.driver = {
 | 
			
		||||
		.name = "rt6190",
 | 
			
		||||
		.probe_type = PROBE_PREFER_ASYNCHRONOUS,
 | 
			
		||||
		.of_match_table = rt6190_of_dev_table,
 | 
			
		||||
		.pm = pm_ptr(&rt6190_dev_pm),
 | 
			
		||||
	},
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue