diff options
author | Tom Rix <trix@redhat.com> | 2020-10-19 12:15:00 -0700 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2020-10-20 10:36:41 -0700 |
commit | 618355cc6a0d9c23da2be171b72686f1f94a4fc1 (patch) | |
tree | 2c58c7eb9daea2a3fe2cc7e7b432077853ae8a4c /drivers | |
parent | 7ebb9db011088f9bd357791f49cb7012e66f29e2 (diff) | |
download | linux-stable-618355cc6a0d9c23da2be171b72686f1f94a4fc1.tar.gz linux-stable-618355cc6a0d9c23da2be171b72686f1f94a4fc1.tar.bz2 linux-stable-618355cc6a0d9c23da2be171b72686f1f94a4fc1.zip |
nfc: remove unneeded break
A break is not needed if it is preceded by a return
Signed-off-by: Tom Rix <trix@redhat.com>
Link: https://lore.kernel.org/r/20201019191500.9264-1-trix@redhat.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/nfc/st21nfca/core.c | 1 | ||||
-rw-r--r-- | drivers/nfc/trf7970a.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/drivers/nfc/st21nfca/core.c b/drivers/nfc/st21nfca/core.c index 2ce17932a073..6ca0d2f56b18 100644 --- a/drivers/nfc/st21nfca/core.c +++ b/drivers/nfc/st21nfca/core.c @@ -794,7 +794,6 @@ static int st21nfca_hci_im_transceive(struct nfc_hci_dev *hdev, skb->len, st21nfca_hci_data_exchange_cb, info); - break; default: return 1; } diff --git a/drivers/nfc/trf7970a.c b/drivers/nfc/trf7970a.c index 3bd97c73f983..c70f62fe321e 100644 --- a/drivers/nfc/trf7970a.c +++ b/drivers/nfc/trf7970a.c @@ -1382,7 +1382,6 @@ static int trf7970a_is_iso15693_write_or_lock(u8 cmd) case ISO15693_CMD_WRITE_DSFID: case ISO15693_CMD_LOCK_DSFID: return 1; - break; default: return 0; } |