summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnson <jjohnson@codeaurora.org>2016-11-08 11:06:02 -0800
committerqcabuildsw <qcabuildsw@localhost>2016-11-08 15:25:25 -0800
commit135eb4e0b7649f5b7cb75b847b4f0fb1184e7076 (patch)
tree0c8ecb65545a853c4458beb2e934066117dd9260
parentc84c9ed4cfb7b935083836929cc9ed3c077dddf4 (diff)
qcacld-3.0: SME: Fix incorrect use of "\" line continuation
Currently there are instances of the "\" line continuation character being used inside quoted strings. This has the undesired side effect of including the indentation of the continued line as part of the quoted string. In addition per the Linux Coding Style user-visible strings should not be split. So remove all incorrect instances of "\" line continuation from SME. Change-Id: I7b7201aca15eda0800db33ffd15e51c3692a9a4d CRs-Fixed: 1087288
-rw-r--r--core/sme/src/common/sme_api.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/core/sme/src/common/sme_api.c b/core/sme/src/common/sme_api.c
index 0ed2506748b6..cebed727ddfc 100644
--- a/core/sme/src/common/sme_api.c
+++ b/core/sme/src/common/sme_api.c
@@ -10701,8 +10701,7 @@ QDF_STATUS sme_ipa_offload_enable_disable(tHalHandle hal, uint8_t session_id,
request_buf = qdf_mem_malloc(sizeof(*request_buf));
if (NULL == request_buf) {
QDF_TRACE(QDF_MODULE_ID_SME, QDF_TRACE_LEVEL_ERROR,
- FL("Not able to allocate memory for \
- IPA_OFFLOAD_ENABLE_DISABLE"));
+ FL("Not able to allocate memory for IPA_OFFLOAD_ENABLE_DISABLE"));
sme_release_global_lock(&pMac->sme);
return QDF_STATUS_E_NOMEM;
}
@@ -10717,8 +10716,7 @@ QDF_STATUS sme_ipa_offload_enable_disable(tHalHandle hal, uint8_t session_id,
if (!QDF_IS_STATUS_SUCCESS(
cds_mq_post_message(CDS_MQ_ID_WMA, &msg))) {
QDF_TRACE(QDF_MODULE_ID_SME, QDF_TRACE_LEVEL_ERROR,
- FL("Not able to post WMA_IPA_OFFLOAD_\
- ENABLE_DISABLE message to WMA"));
+ FL("Not able to post WMA_IPA_OFFLOAD_ENABLE_DISABLE message to WMA"));
qdf_mem_free(request_buf);
sme_release_global_lock(&pMac->sme);
return QDF_STATUS_E_FAILURE;