summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnson <jjohnson@codeaurora.org>2016-11-08 10:56:53 -0800
committerqcabuildsw <qcabuildsw@localhost>2016-11-08 15:25:23 -0800
commitc84c9ed4cfb7b935083836929cc9ed3c077dddf4 (patch)
treeb1d07593e1d2eb1a6d2697b1917f6d84001d6c50
parentbf911f7ebc2df3c9ea3885b889d023377c8e6eb4 (diff)
qcacld-3.0: HDD: 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 HDD. Change-Id: I9c63be20f01cb14c615b0a1c786ed06a3c2094aa CRs-Fixed: 1087272
-rw-r--r--core/hdd/src/wlan_hdd_ipa.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/core/hdd/src/wlan_hdd_ipa.c b/core/hdd/src/wlan_hdd_ipa.c
index 7576c5702caa..90b9572970af 100644
--- a/core/hdd/src/wlan_hdd_ipa.c
+++ b/core/hdd/src/wlan_hdd_ipa.c
@@ -1603,8 +1603,7 @@ static void hdd_ipa_uc_offload_enable_disable(hdd_adapter_t *adapter,
if (!iface_context || (enable == iface_context->offload_enabled)) {
/* IPA offload status is already set as desired */
HDD_IPA_LOG(QDF_TRACE_LEVEL_ERROR,
- "IPA offload status is already set: \
- (offload_type=%d, vdev_id=%d, enable=%d)",
+ "IPA offload status is already set: (offload_type=%d, vdev_id=%d, enable=%d)",
offload_type, adapter->sessionId, enable);
return;
}
@@ -1625,11 +1624,11 @@ static void hdd_ipa_uc_offload_enable_disable(hdd_adapter_t *adapter,
sme_ipa_offload_enable_disable(WLAN_HDD_GET_HAL_CTX(adapter),
adapter->sessionId, &ipa_offload_enable_disable)) {
HDD_IPA_LOG(QDF_TRACE_LEVEL_ERROR,
- "%s: Failure to enable IPA offload \
- (offload_type=%d, vdev_id=%d, enable=%d)", __func__,
- ipa_offload_enable_disable.offload_type,
- ipa_offload_enable_disable.vdev_id,
- ipa_offload_enable_disable.enable);
+ "%s: Failure to enable IPA offload (offload_type=%d, vdev_id=%d, enable=%d)",
+ __func__,
+ ipa_offload_enable_disable.offload_type,
+ ipa_offload_enable_disable.vdev_id,
+ ipa_offload_enable_disable.enable);
} else {
/* Update the IPA offload status */
iface_context->offload_enabled =