From 875cf2d24f3328d223afebba25cccf996cd8231b Mon Sep 17 00:00:00 2001 From: Abhinav Kumar Date: Wed, 2 May 2018 13:35:28 +0530 Subject: [PATCH] qcacld-3.0: Add comment between cases in switch statement Add /* fallthrough */ comment in sme_qos_add_ts_success_fnp as per linux checkpatch script in case of reason SME_QOS_REASON_REQ_SUCCESS of flow request. Change-Id: I6285ccdc74e5c19fb9bbb8a1b9e0dec5e54edc6e CRs-Fixed: 2233179 --- core/sme/src/qos/sme_qos.c | 1 + 1 file changed, 1 insertion(+) diff --git a/core/sme/src/qos/sme_qos.c b/core/sme/src/qos/sme_qos.c index 4869d27cd0..41f92f481d 100644 --- a/core/sme/src/qos/sme_qos.c +++ b/core/sme/src/qos/sme_qos.c @@ -7203,6 +7203,7 @@ static QDF_STATUS sme_qos_add_ts_success_fnp(tpAniSirGlobal mac_ctx, case SME_QOS_REASON_REQ_SUCCESS: hdd_status = SME_QOS_STATUS_SETUP_MODIFIED_IND; inform_hdd = true; + /* fallthrough */ default: delete_entry = false; break;