소스 검색

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 년 전
부모
커밋
7160ff0131
1개의 변경된 파일2개의 추가작업 그리고 3개의 파일을 삭제
  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);