mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	usb: fix uninitialized variable warning in keyspan_pda
This fixes the compiler warning. Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
		
							parent
							
								
									397f519a0d
								
							
						
					
					
						commit
						3b36a8fd67
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -408,7 +408,7 @@ static int keyspan_pda_get_modem_info(struct usb_serial *serial,
 | 
			
		|||
			     3, /* get pins */
 | 
			
		||||
			     USB_TYPE_VENDOR|USB_RECIP_INTERFACE|USB_DIR_IN,
 | 
			
		||||
			     0, 0, &data, 1, 2000);
 | 
			
		||||
	if (rc > 0)
 | 
			
		||||
	if (rc >= 0)
 | 
			
		||||
		*value = data;
 | 
			
		||||
	return rc;
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue