mirror of
				https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
				synced 2025-10-31 16:18: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
				
			
		
							
								
								
									
										22
									
								
								drivers/s390/cio/eadm_sch.h
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										22
									
								
								drivers/s390/cio/eadm_sch.h
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,22 @@ | |||
| #ifndef EADM_SCH_H | ||||
| #define EADM_SCH_H | ||||
| 
 | ||||
| #include <linux/completion.h> | ||||
| #include <linux/device.h> | ||||
| #include <linux/timer.h> | ||||
| #include <linux/list.h> | ||||
| #include "orb.h" | ||||
| 
 | ||||
| struct eadm_private { | ||||
| 	union orb orb; | ||||
| 	enum {EADM_IDLE, EADM_BUSY, EADM_NOT_OPER} state; | ||||
| 	struct completion *completion; | ||||
| 	struct subchannel *sch; | ||||
| 	struct timer_list timer; | ||||
| 	struct list_head head; | ||||
| } __aligned(8); | ||||
| 
 | ||||
| #define get_eadm_private(n) ((struct eadm_private *)dev_get_drvdata(&n->dev)) | ||||
| #define set_eadm_private(n, p) (dev_set_drvdata(&n->dev, p)) | ||||
| 
 | ||||
| #endif | ||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 awab228
						awab228