소스 검색

qcacmn: Fix build errors generated by gcc 6

Gcc 6 introduces some stricter checking for indentation,
causing warnings of misleading-indentation, which are
treated as build errors when CLD3.x drivers are compiled.

Fix all the identation warnings under qcacmn branch.

Change-Id: I50b5eb093f08be118a29ff58e1bc3d7f2518e0bf
CRs-Fixed: 2058147
wadesong 8 년 전
부모
커밋
6edf0b6d1b
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      hif/src/sdio/native_sdio/src/hif.c

+ 2 - 2
hif/src/sdio/native_sdio/src/hif.c

@@ -919,8 +919,8 @@ QDF_STATUS reinit_sdio(struct hif_sdio_dev *device)
 	 */
 	if (mmcclock > 0)
 		clock = mmcclock;
-		host->ios.clock = clock;
-		host->ops->set_ios(host, &host->ios);
+	host->ios.clock = clock;
+	host->ops->set_ios(host, &host->ios);
 
 
 	if (card->host->caps & MMC_CAP_4_BIT_DATA) {