Browse Source

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 năm trước cách đây
mục cha
commit
6edf0b6d1b
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  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) {