浏览代码

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 7 年之前
父节点
当前提交
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) {