mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	ARM: pxa, regulator: fix building ezx e680
The reference to camera_supply_gpiod_table was added in the wrong function,
as observed from this randconfig build failure:
arch/arm/mach-pxa/ezx.c: In function 'e680_init':
arch/arm/mach-pxa/ezx.c:905:26: error: 'camera_supply_gpiod_table' undeclared (first use in this function)
  gpiod_add_lookup_table(&camera_supply_gpiod_table);
Fixes: 6059577cb2 ("regulator: fixed: Convert to use GPIO descriptor only")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Mark Brown <broonie@kernel.org>
			
			
This commit is contained in:
		
							parent
							
								
									38de19fa71
								
							
						
					
					
						commit
						2b6c00c157
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -902,7 +902,6 @@ static void __init e680_init(void)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	pxa_set_keypad_info(&e680_keypad_platform_data);
 | 
						pxa_set_keypad_info(&e680_keypad_platform_data);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	gpiod_add_lookup_table(&camera_supply_gpiod_table);
 | 
					 | 
				
			||||||
	pwm_add_table(ezx_pwm_lookup, ARRAY_SIZE(ezx_pwm_lookup));
 | 
						pwm_add_table(ezx_pwm_lookup, ARRAY_SIZE(ezx_pwm_lookup));
 | 
				
			||||||
	platform_add_devices(ARRAY_AND_SIZE(ezx_devices));
 | 
						platform_add_devices(ARRAY_AND_SIZE(ezx_devices));
 | 
				
			||||||
	platform_add_devices(ARRAY_AND_SIZE(e680_devices));
 | 
						platform_add_devices(ARRAY_AND_SIZE(e680_devices));
 | 
				
			||||||
| 
						 | 
					@ -1132,6 +1131,7 @@ static void __init a910_init(void)
 | 
				
			||||||
	if (a910_camera_init() == 0)
 | 
						if (a910_camera_init() == 0)
 | 
				
			||||||
		pxa_set_camera_info(&a910_pxacamera_platform_data);
 | 
							pxa_set_camera_info(&a910_pxacamera_platform_data);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						gpiod_add_lookup_table(&camera_supply_gpiod_table);
 | 
				
			||||||
	pwm_add_table(ezx_pwm_lookup, ARRAY_SIZE(ezx_pwm_lookup));
 | 
						pwm_add_table(ezx_pwm_lookup, ARRAY_SIZE(ezx_pwm_lookup));
 | 
				
			||||||
	platform_add_devices(ARRAY_AND_SIZE(ezx_devices));
 | 
						platform_add_devices(ARRAY_AND_SIZE(ezx_devices));
 | 
				
			||||||
	platform_add_devices(ARRAY_AND_SIZE(a910_devices));
 | 
						platform_add_devices(ARRAY_AND_SIZE(a910_devices));
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue