mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-03 18:20:25 +02:00 
			
		
		
		
	Driver core: Update some prototypes in platform.txt
Just make these match the actual code. Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
		
							parent
							
								
									cd35449b93
								
							
						
					
					
						commit
						44414e14af
					
				
					 1 changed files with 3 additions and 3 deletions
				
			
		| 
						 | 
					@ -122,15 +122,15 @@ None the less, there are some APIs to support such legacy drivers.  Avoid
 | 
				
			||||||
using these calls except with such hotplug-deficient drivers.
 | 
					using these calls except with such hotplug-deficient drivers.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	struct platform_device *platform_device_alloc(
 | 
						struct platform_device *platform_device_alloc(
 | 
				
			||||||
			char *name, unsigned id);
 | 
								const char *name, int id);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
You can use platform_device_alloc() to dynamically allocate a device, which
 | 
					You can use platform_device_alloc() to dynamically allocate a device, which
 | 
				
			||||||
you will then initialize with resources and platform_device_register().
 | 
					you will then initialize with resources and platform_device_register().
 | 
				
			||||||
A better solution is usually:
 | 
					A better solution is usually:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	struct platform_device *platform_device_register_simple(
 | 
						struct platform_device *platform_device_register_simple(
 | 
				
			||||||
			char *name, unsigned id,
 | 
								const char *name, int id,
 | 
				
			||||||
			struct resource *res, unsigned nres);
 | 
								struct resource *res, unsigned int nres);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
You can use platform_device_register_simple() as a one-step call to allocate
 | 
					You can use platform_device_register_simple() as a one-step call to allocate
 | 
				
			||||||
and register a device.
 | 
					and register a device.
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue