NFC: fdp: Detect errors from fdp_nci_create_conn()
commit fa1ce54ea38f7f83473fce62e64fefbd7ebd170e upstream.
drivers/nfc/fdp/fdp.c: In function ‘fdp_nci_patch_otp’:
drivers/nfc/fdp/fdp.c:373: warning: comparison is always false due to limited range of data type
drivers/nfc/fdp/fdp.c: In function ‘fdp_nci_patch_ram’:
drivers/nfc/fdp/fdp.c:444: warning: comparison is always false due to limited range of data type
fdp_nci_create_conn() may return a negative error code, which is
silently ignored by assigning it to a u8.
Change conn_id from u8 to int to fix this.
Fixes: a06347c04c
("NFC: Add Intel Fields Peak NFC solution driver")
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
868b3ee358
commit
c5f519610b
1 changed files with 2 additions and 2 deletions
|
@ -352,7 +352,7 @@ static int fdp_nci_patch_otp(struct nci_dev *ndev)
|
||||||
{
|
{
|
||||||
struct fdp_nci_info *info = nci_get_drvdata(ndev);
|
struct fdp_nci_info *info = nci_get_drvdata(ndev);
|
||||||
struct device *dev = &info->phy->i2c_dev->dev;
|
struct device *dev = &info->phy->i2c_dev->dev;
|
||||||
u8 conn_id;
|
int conn_id;
|
||||||
int r = 0;
|
int r = 0;
|
||||||
|
|
||||||
if (info->otp_version >= info->otp_patch_version)
|
if (info->otp_version >= info->otp_patch_version)
|
||||||
|
@ -423,7 +423,7 @@ static int fdp_nci_patch_ram(struct nci_dev *ndev)
|
||||||
{
|
{
|
||||||
struct fdp_nci_info *info = nci_get_drvdata(ndev);
|
struct fdp_nci_info *info = nci_get_drvdata(ndev);
|
||||||
struct device *dev = &info->phy->i2c_dev->dev;
|
struct device *dev = &info->phy->i2c_dev->dev;
|
||||||
u8 conn_id;
|
int conn_id;
|
||||||
int r = 0;
|
int r = 0;
|
||||||
|
|
||||||
if (info->ram_version >= info->ram_patch_version)
|
if (info->ram_version >= info->ram_patch_version)
|
||||||
|
|
Loading…
Add table
Reference in a new issue