瀏覽代碼

msm: camera: sensor: Fix misleading indentation issue

Fix misleading indentation issue.

CRs-Fixed: 2732403
Change-Id: I1f04f0de14ef7c18d669f17842c712f340d093ed
Signed-off-by: Depeng Shao <[email protected]>
Depeng Shao 5 年之前
父節點
當前提交
61575d2c08
共有 1 個文件被更改,包括 5 次插入3 次删除
  1. 5 3
      drivers/cam_sensor_module/cam_sensor_io/cam_sensor_spi.c

+ 5 - 3
drivers/cam_sensor_module/cam_sensor_io/cam_sensor_spi.c

@@ -1,6 +1,6 @@
 // SPDX-License-Identifier: GPL-2.0-only
 /*
- * Copyright (c) 2017-2019, The Linux Foundation. All rights reserved.
+ * Copyright (c) 2017-2020, The Linux Foundation. All rights reserved.
  */
 
 #include <linux/dma-contiguous.h>
@@ -171,12 +171,14 @@ static int32_t cam_spi_tx_helper(struct camera_io_master *client,
 		memcpy(data, crx + hlen, num_byte);
 
 out:
-	if (!tx)
+	if (!tx) {
 		vfree(vaddr_tx);
 		vaddr_tx = NULL;
-	if (!rx)
+	}
+	if (!rx) {
 		vfree(vaddr_rx);
 		vaddr_rx = NULL;
+	}
 	return rc;
 }