Commit 618355cc authored by Tom Rix's avatar Tom Rix Committed by Jakub Kicinski

nfc: remove unneeded break

A break is not needed if it is preceded by a return
Signed-off-by: default avatarTom Rix <trix@redhat.com>
Link: https://lore.kernel.org/r/20201019191500.9264-1-trix@redhat.comSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent 7ebb9db0
...@@ -794,7 +794,6 @@ static int st21nfca_hci_im_transceive(struct nfc_hci_dev *hdev, ...@@ -794,7 +794,6 @@ static int st21nfca_hci_im_transceive(struct nfc_hci_dev *hdev,
skb->len, skb->len,
st21nfca_hci_data_exchange_cb, st21nfca_hci_data_exchange_cb,
info); info);
break;
default: default:
return 1; return 1;
} }
......
...@@ -1382,7 +1382,6 @@ static int trf7970a_is_iso15693_write_or_lock(u8 cmd) ...@@ -1382,7 +1382,6 @@ static int trf7970a_is_iso15693_write_or_lock(u8 cmd)
case ISO15693_CMD_WRITE_DSFID: case ISO15693_CMD_WRITE_DSFID:
case ISO15693_CMD_LOCK_DSFID: case ISO15693_CMD_LOCK_DSFID:
return 1; return 1;
break;
default: default:
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment