소스 검색

msm: camera: icp: Use mbn to load secure FW image

Use .mbn as opposed to .mdt to load ICP FW image. mbn is
all the mdt segments put together which improves load time
as a whole.

CRs-Fixed: 3097673
Change-Id: I9d83fb223b1a17e6c041697d4a8fe5cf5932d5ee
Signed-off-by: Karthik Anantha Ram <[email protected]>
Karthik Anantha Ram 3 년 전
부모
커밋
d7c79a8c98
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      drivers/cam_icp/icp_hw/lx7_hw/lx7_core.c

+ 1 - 1
drivers/cam_icp/icp_hw/lx7_hw/lx7_core.c

@@ -558,7 +558,7 @@ static int __load_firmware(struct platform_device *pdev)
 	}
 
 	scnprintf(firmware_name, ARRAY_SIZE(firmware_name),
-		"%s.mdt", fw_name);
+		"%s.mbn", fw_name);
 
 	node = of_parse_phandle(pdev->dev.of_node, "memory-region", 0);
 	if (!node) {