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
				
			
		
							
								
								
									
										32
									
								
								arch/mips/kernel/topology.c
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										32
									
								
								arch/mips/kernel/topology.c
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,32 @@ | |||
| #include <linux/cpu.h> | ||||
| #include <linux/cpumask.h> | ||||
| #include <linux/init.h> | ||||
| #include <linux/node.h> | ||||
| #include <linux/nodemask.h> | ||||
| #include <linux/percpu.h> | ||||
| 
 | ||||
| static DEFINE_PER_CPU(struct cpu, cpu_devices); | ||||
| 
 | ||||
| static int __init topology_init(void) | ||||
| { | ||||
| 	int i, ret; | ||||
| 
 | ||||
| #ifdef CONFIG_NUMA | ||||
| 	for_each_online_node(i) | ||||
| 		register_one_node(i); | ||||
| #endif /* CONFIG_NUMA */ | ||||
| 
 | ||||
| 	for_each_present_cpu(i) { | ||||
| 		struct cpu *c = &per_cpu(cpu_devices, i); | ||||
| 
 | ||||
| 		c->hotpluggable = 1; | ||||
| 		ret = register_cpu(c, i); | ||||
| 		if (ret) | ||||
| 			printk(KERN_WARNING "topology_init: register_cpu %d " | ||||
| 			       "failed (%d)\n", i, ret); | ||||
| 	} | ||||
| 
 | ||||
| 	return 0; | ||||
| } | ||||
| 
 | ||||
| subsys_initcall(topology_init); | ||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 awab228
						awab228