Browse Source

qcacld-3.0: SAP: 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 SAP.

Change-Id: Ic53b6570df501e8eb7f9812279aca1c748b66fba
CRs-Fixed: 1087292
Jeff Johnson 8 years ago
parent
commit
7160ff0131
1 changed files with 2 additions and 3 deletions
  1. 2 3
      core/sap/dfs/src/dfs_process_phyerr.c

+ 2 - 3
core/sap/dfs/src/dfs_process_phyerr.c

@@ -817,9 +817,8 @@ dfs_process_phyerr(struct ieee80211com *ic, void *buf, uint16_t datalen,
 
 				QDF_TRACE(QDF_MODULE_ID_SAP,
 					QDF_TRACE_LEVEL_INFO,
-					"%s [%d] : Rejecting: dur = %d \
-					maxpulsedur = %d, rssi = %d \
-					minrssithresh = %d", __func__, __LINE__,
+					"%s [%d] : Rejecting: dur = %d maxpulsedur = %d, rssi = %d minrssithresh = %d",
+					__func__, __LINE__,
 					e.dur, dfs->dfs_rinfo.rn_maxpulsedur,
 					e.rssi,
 					dfs->dfs_rinfo.rn_minrssithresh);