USB: ohci-pnx4008: Remove unnecessary cast of return value of kzalloc
Remove unnecessary cast of return value of kzalloc() in usb/host/ohci-pnx4008.c Signed-off-by: Suresh Jayaraman <sjayaraman@novell.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
		
					parent
					
						
							
								6c59649d49
							
						
					
				
			
			
				commit
				
					
						13f9966b3b
					
				
			
		
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -134,7 +134,7 @@ static int isp1301_attach(struct i2c_adapter *adap, int addr, int kind)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	struct i2c_client *c;
 | 
						struct i2c_client *c;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	c = (struct i2c_client *)kzalloc(sizeof(*c), GFP_KERNEL);
 | 
						c = kzalloc(sizeof(*c), GFP_KERNEL);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (!c)
 | 
						if (!c)
 | 
				
			||||||
		return -ENOMEM;
 | 
							return -ENOMEM;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue