Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 05db6e94 authored by Christophe Ricard's avatar Christophe Ricard Committed by Samuel Ortiz
Browse files

nfc: st21nfcb: Add missing break statement in switch section



Add missing break statement when ST21NFCB_EVT_TRANSACTION switch
section ends.

Signed-off-by: default avatarChristophe Ricard <christophe-h.ricard@st.com>
Signed-off-by: default avatarSamuel Ortiz <sameo@linux.intel.com>
parent 0fc4a129
Loading
Loading
Loading
Loading
+1 −0
Original line number Original line Diff line number Diff line
@@ -340,6 +340,7 @@ static int st21nfcb_hci_connectivity_event_received(struct nci_dev *ndev,
		       transaction->aid_len + 4, transaction->params_len);
		       transaction->aid_len + 4, transaction->params_len);


		r = nfc_se_transaction(ndev->nfc_dev, host, transaction);
		r = nfc_se_transaction(ndev->nfc_dev, host, transaction);
		break;
	default:
	default:
		return 1;
		return 1;
	}
	}