mirror of
				https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
				synced 2025-10-31 08:08:51 +01:00 
			
		
		
		
	Fixed MTP to work with TWRP
This commit is contained in:
		
						commit
						f6dfaef42e
					
				
					 50820 changed files with 20846062 additions and 0 deletions
				
			
		
							
								
								
									
										81
									
								
								arch/arm/mach-pxa/include/mach/palm27x.h
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										81
									
								
								arch/arm/mach-pxa/include/mach/palm27x.h
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,81 @@ | |||
| /*
 | ||||
|  * Common functions for Palm LD, T5, TX, Z72 | ||||
|  * | ||||
|  * Copyright (C) 2010 | ||||
|  * Marek Vasut <marek.vasut@gmail.com> | ||||
|  * | ||||
|  * This program is free software; you can redistribute it and/or modify | ||||
|  * it under the terms of the GNU General Public License version 2 as | ||||
|  * published by the Free Software Foundation. | ||||
|  * | ||||
|  */ | ||||
| #ifndef	__INCLUDE_MACH_PALM27X__ | ||||
| #define	__INCLUDE_MACH_PALM27X__ | ||||
| 
 | ||||
| #if defined(CONFIG_MMC_PXA) || defined(CONFIG_MMC_PXA_MODULE) | ||||
| extern void __init palm27x_mmc_init(int detect, int ro, int power, | ||||
| 					int power_inverted); | ||||
| #else | ||||
| static inline void palm27x_mmc_init(int detect, int ro, int power, | ||||
| 					int power_inverted) | ||||
| {} | ||||
| #endif | ||||
| 
 | ||||
| #if defined(CONFIG_SUSPEND) | ||||
| extern void __init palm27x_pm_init(unsigned long str_base); | ||||
| #else | ||||
| static inline void palm27x_pm_init(unsigned long str_base) {} | ||||
| #endif | ||||
| 
 | ||||
| #if defined(CONFIG_FB_PXA) || defined(CONFIG_FB_PXA_MODULE) | ||||
| extern struct pxafb_mode_info palm_320x480_lcd_mode; | ||||
| extern struct pxafb_mode_info palm_320x320_lcd_mode; | ||||
| extern struct pxafb_mode_info palm_320x320_new_lcd_mode; | ||||
| extern void __init palm27x_lcd_init(int power, | ||||
| 					struct pxafb_mode_info *mode); | ||||
| #else | ||||
| #define palm27x_lcd_init(power, mode)	do {} while (0) | ||||
| #endif | ||||
| 
 | ||||
| #if	defined(CONFIG_USB_PXA27X) || \ | ||||
| 	defined(CONFIG_USB_PXA27X_MODULE) | ||||
| extern void __init palm27x_udc_init(int vbus, int pullup, | ||||
| 					int vbus_inverted); | ||||
| #else | ||||
| static inline void palm27x_udc_init(int vbus, int pullup, int vbus_inverted) {} | ||||
| #endif | ||||
| 
 | ||||
| #if defined(CONFIG_IRDA) || defined(CONFIG_IRDA_MODULE) | ||||
| extern void __init palm27x_irda_init(int pwdn); | ||||
| #else | ||||
| static inline void palm27x_irda_init(int pwdn) {} | ||||
| #endif | ||||
| 
 | ||||
| #if	defined(CONFIG_TOUCHSCREEN_WM97XX) || \ | ||||
| 	defined(CONFIG_TOUCHSCREEN_WM97XX_MODULE) | ||||
| extern void __init palm27x_ac97_init(int minv, int maxv, int jack, | ||||
| 					int reset); | ||||
| #else | ||||
| static inline void palm27x_ac97_init(int minv, int maxv, int jack, int reset) {} | ||||
| #endif | ||||
| 
 | ||||
| #if defined(CONFIG_BACKLIGHT_PWM) || defined(CONFIG_BACKLIGHT_PWM_MODULE) | ||||
| extern void __init palm27x_pwm_init(int bl, int lcd); | ||||
| #else | ||||
| static inline void palm27x_pwm_init(int bl, int lcd) {} | ||||
| #endif | ||||
| 
 | ||||
| #if defined(CONFIG_PDA_POWER) || defined(CONFIG_PDA_POWER_MODULE) | ||||
| extern void __init palm27x_power_init(int ac, int usb); | ||||
| #else | ||||
| static inline void palm27x_power_init(int ac, int usb) {} | ||||
| #endif | ||||
| 
 | ||||
| #if defined(CONFIG_REGULATOR_MAX1586) || \ | ||||
|     defined(CONFIG_REGULATOR_MAX1586_MODULE) | ||||
| extern void __init palm27x_pmic_init(void); | ||||
| #else | ||||
| static inline void palm27x_pmic_init(void) {} | ||||
| #endif | ||||
| 
 | ||||
| #endif	/* __INCLUDE_MACH_PALM27X__ */ | ||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 awab228
						awab228