NFC: st21nfca: Add few code style fixes
Add a minor code style fixes 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
064d004796
commit
57dc828a77
|
@ -162,7 +162,6 @@ static int st21nfca_hci_load_session(struct nfc_hci_dev *hdev)
|
||||||
r = nfc_hci_send_cmd(hdev, ST21NFCA_DEVICE_MGNT_GATE,
|
r = nfc_hci_send_cmd(hdev, ST21NFCA_DEVICE_MGNT_GATE,
|
||||||
ST21NFCA_DM_GETINFO, pipe_info,
|
ST21NFCA_DM_GETINFO, pipe_info,
|
||||||
sizeof(pipe_info), &skb_pipe_info);
|
sizeof(pipe_info), &skb_pipe_info);
|
||||||
|
|
||||||
if (r)
|
if (r)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
@ -982,7 +981,6 @@ int st21nfca_hci_probe(void *phy_id, struct nfc_phy_ops *phy_ops,
|
||||||
* persistent info to discriminate 2 identical chips
|
* persistent info to discriminate 2 identical chips
|
||||||
*/
|
*/
|
||||||
dev_num = find_first_zero_bit(dev_mask, ST21NFCA_NUM_DEVICES);
|
dev_num = find_first_zero_bit(dev_mask, ST21NFCA_NUM_DEVICES);
|
||||||
|
|
||||||
if (dev_num >= ST21NFCA_NUM_DEVICES)
|
if (dev_num >= ST21NFCA_NUM_DEVICES)
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
|
|
||||||
|
|
|
@ -94,6 +94,7 @@ struct st21nfca_i2c_phy {
|
||||||
int hard_fault;
|
int hard_fault;
|
||||||
struct mutex phy_lock;
|
struct mutex phy_lock;
|
||||||
};
|
};
|
||||||
|
|
||||||
static u8 len_seq[] = { 16, 24, 12, 29 };
|
static u8 len_seq[] = { 16, 24, 12, 29 };
|
||||||
static u16 wait_tab[] = { 2, 3, 5, 15, 20, 40};
|
static u16 wait_tab[] = { 2, 3, 5, 15, 20, 40};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue