projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0fc4a12
)
nfc: st21nfcb: Add missing break statement in switch section
author
Christophe Ricard
<
[email protected]
>
Tue, 31 Mar 2015 06:02:20 +0000
(08:02 +0200)
committer
Samuel Ortiz
<
[email protected]
>
Sun, 5 Apr 2015 22:18:43 +0000
(
00:18
+0200)
Add missing break statement when ST21NFCB_EVT_TRANSACTION switch
section ends.
Signed-off-by: Christophe Ricard <
[email protected]
>
Signed-off-by: Samuel Ortiz <
[email protected]
>
drivers/nfc/st21nfcb/st21nfcb_se.c
patch
|
blob
|
history
diff --git
a/drivers/nfc/st21nfcb/st21nfcb_se.c
b/drivers/nfc/st21nfcb/st21nfcb_se.c
index 455b9c2b833dff6e90672a8f8e7f754b7256c747..6df7b950d0e9ab6e32397791f2ccc08663bf68ed 100644
(file)
--- a/
drivers/nfc/st21nfcb/st21nfcb_se.c
+++ b/
drivers/nfc/st21nfcb/st21nfcb_se.c
@@
-340,6
+340,7
@@
static int st21nfcb_hci_connectivity_event_received(struct nci_dev *ndev,
transaction->aid_len + 4, transaction->params_len);
r = nfc_se_transaction(ndev->nfc_dev, host, transaction);
+ break;
default:
return 1;
}