NFC: Driver: Added Fall through

To avoid code compilation issues NFC team added break in
eSE cold reset file as temperory fix.

Replacing the break with Fall through.

Change-Id: Ieb6a5f105a71ae0533f746f6c56479c56a68cd2c
This commit is contained in:
PRANAY BHARGAV BHAVARAJU
2022-12-17 16:24:27 +05:30
committed by Gerrit - the friendly Code Review server
parent fcc9dd0972
commit f9075847af

View File

@@ -284,8 +284,8 @@ int ese_cold_reset_ioctl(struct nfc_dev *nfc_dev, unsigned long arg)
/* free buffers and exit with pass */ /* free buffers and exit with pass */
goto err; goto err;
} }
/* Temp fix to avoid compilation issues */ fallthrough;
break;
case ESE_COLD_RESET_PROTECT_DIS: case ESE_COLD_RESET_PROTECT_DIS:
if (nfc_dev->cold_reset.is_crp_en && if (nfc_dev->cold_reset.is_crp_en &&