forked from mirrors/linux
		
	nfc: s3fwrn5: fix undefined parameter values in dev_err()
In the function s3fwrn5_fw_download(), the 'ret' is not assigned,
so the correct value should be given in dev_err function.
Fixes: a0302ff590 ("nfc: s3fwrn5: remove unnecessary label")
Signed-off-by: Zhang Shengju <zhangshengju@cmss.chinamobile.com>
Signed-off-by: Tang Bin <tangbin@cmss.chinamobile.com>
Reviewed-by: Nathan Chancellor <nathan@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
			
			
This commit is contained in:
		
							parent
							
								
									9d0279d043
								
							
						
					
					
						commit
						46573e3ab0
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -423,7 +423,7 @@ int s3fwrn5_fw_download(struct s3fwrn5_fw_info *fw_info)
 | 
				
			||||||
	if (IS_ERR(tfm)) {
 | 
						if (IS_ERR(tfm)) {
 | 
				
			||||||
		ret = PTR_ERR(tfm);
 | 
							ret = PTR_ERR(tfm);
 | 
				
			||||||
		dev_err(&fw_info->ndev->nfc_dev->dev,
 | 
							dev_err(&fw_info->ndev->nfc_dev->dev,
 | 
				
			||||||
			"Cannot allocate shash (code=%ld)\n", PTR_ERR(tfm));
 | 
								"Cannot allocate shash (code=%pe)\n", tfm);
 | 
				
			||||||
		goto out;
 | 
							goto out;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue