mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
NFC: st21nfca: st21nfca_hci_i2c_probe returns st21nfca_hci_probe result.
st21nfca_hci_probe return 0 in case of successful call and a different value in any other cases. There is no need to check for st21nfca_hci_probe return as this will be checked after st21nfca_hci_i2c_probe is completed. Signed-off-by: Christophe Ricard <christophe-h.ricard@st.com> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
This commit is contained in:
parent
761a2c4f90
commit
9bac75d0ec
1 changed files with 1 additions and 6 deletions
|
@ -555,14 +555,9 @@ static int st21nfca_hci_i2c_probe(struct i2c_client *client,
|
||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
|
|
||||||
r = st21nfca_hci_probe(phy, &i2c_phy_ops, LLC_SHDLC_NAME,
|
return st21nfca_hci_probe(phy, &i2c_phy_ops, LLC_SHDLC_NAME,
|
||||||
ST21NFCA_FRAME_HEADROOM, ST21NFCA_FRAME_TAILROOM,
|
ST21NFCA_FRAME_HEADROOM, ST21NFCA_FRAME_TAILROOM,
|
||||||
ST21NFCA_HCI_LLC_MAX_PAYLOAD, &phy->hdev);
|
ST21NFCA_HCI_LLC_MAX_PAYLOAD, &phy->hdev);
|
||||||
|
|
||||||
if (r < 0)
|
|
||||||
return r;
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int st21nfca_hci_i2c_remove(struct i2c_client *client)
|
static int st21nfca_hci_i2c_remove(struct i2c_client *client)
|
||||||
|
|
Loading…
Reference in a new issue