diff options
| author | Abhinav Kumar <abhikuma@codeaurora.org> | 2018-05-02 12:42:39 +0530 |
|---|---|---|
| committer | nshrivas <nshrivas@codeaurora.org> | 2018-05-03 07:41:31 -0700 |
| commit | b0edbaaa43dcbf885098cecfc7454b1d9504bccc (patch) | |
| tree | f0004448ee1bda0266d9c7b457925df7af380b22 | |
| parent | 86cfb4a85e21a56a72f779fb137ec99ce8cdbc18 (diff) | |
qcacld-3.0: Add comment between cases in switch statement
Add /* fallthrough */ comment in sme_qos_add_ts_failure_fnp
as per linux checkpatch script in case of reason
SME_QOS_REASON_REQ_SUCCESS of flow request.
Change-Id: I6ea942e53cd6f0828dbe55cfdd77ecf75cf1cdbb
CRs-Fixed: 2233176
| -rw-r--r-- | core/sme/src/qos/sme_qos.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/sme/src/qos/sme_qos.c b/core/sme/src/qos/sme_qos.c index 83828a090df2..07c7ea9fdba9 100644 --- a/core/sme/src/qos/sme_qos.c +++ b/core/sme/src/qos/sme_qos.c @@ -7019,6 +7019,7 @@ static QDF_STATUS sme_qos_add_ts_failure_fnp(tpAniSirGlobal pMac, tListElem case SME_QOS_REASON_MODIFY: flow_info->reason = SME_QOS_REASON_REQ_SUCCESS; case SME_QOS_REASON_REQ_SUCCESS: + /* fallthrough */ default: inform_hdd = false; break; |
