From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-17.9 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,MENTIONS_GIT_HOSTING,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id D4AAEC43457 for ; Mon, 12 Oct 2020 12:52:19 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 8187421D7F for ; Mon, 12 Oct 2020 12:52:19 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=ti.com header.i=@ti.com header.b="vT+j/A55" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727633AbgJLMwS (ORCPT ); Mon, 12 Oct 2020 08:52:18 -0400 Received: from fllv0016.ext.ti.com ([198.47.19.142]:56676 "EHLO fllv0016.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726572AbgJLMwR (ORCPT ); Mon, 12 Oct 2020 08:52:17 -0400 Received: from lelv0266.itg.ti.com ([10.180.67.225]) by fllv0016.ext.ti.com (8.15.2/8.15.2) with ESMTP id 09CCqECL118837; Mon, 12 Oct 2020 07:52:14 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1602507134; bh=zFXVHjXgyy+aPPuIUsOOoYVJvcbamww0y9tEzVCBUvk=; h=From:To:CC:Subject:Date; b=vT+j/A55fHTeSe4pF3f4JSLfvmrAOfCPdFC0j1owuMpUNEFzUCG8xFo3JfWpk2N0Z kUx/8l9TpnrNw+Z+Fn31UHfoTSeCyvrDtKera8wZZvW4DcH4FopJOV4Yg27BHMWOif zE0g2wddPCDR0J0QYOlxIpAQW9ouUHC74fmBulNo= Received: from DFLE113.ent.ti.com (dfle113.ent.ti.com [10.64.6.34]) by lelv0266.itg.ti.com (8.15.2/8.15.2) with ESMTPS id 09CCqEDw006199 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL); Mon, 12 Oct 2020 07:52:14 -0500 Received: from DFLE105.ent.ti.com (10.64.6.26) by DFLE113.ent.ti.com (10.64.6.34) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.1979.3; Mon, 12 Oct 2020 07:52:14 -0500 Received: from fllv0039.itg.ti.com (10.64.41.19) by DFLE105.ent.ti.com (10.64.6.26) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.1979.3 via Frontend Transport; Mon, 12 Oct 2020 07:52:14 -0500 Received: from NiksLab.india.ti.com (ileax41-snat.itg.ti.com [10.172.224.153]) by fllv0039.itg.ti.com (8.15.2/8.15.2) with ESMTP id 09CCqBEf025800; Mon, 12 Oct 2020 07:52:12 -0500 From: Nikhil Devshatwar To: , Laurent Pinchart CC: Benoit Parrot , Tomi Valkeinen , Sekhar Nori Subject: [PATCH] media: platform: ti-vpe: Update the path to firmware Date: Mon, 12 Oct 2020 18:22:00 +0530 Message-ID: <20201012125200.11643-1-nikhil.nd@ti.com> X-Mailer: git-send-email 2.17.1 MIME-Version: 1.0 Content-Type: text/plain X-EXCLAIMER-MD-CONFIG: e1e8a2fd-e40a-4ac6-ac9b-f7e9cc9ee180 Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org vpdma firmware is now available in the linux-firmware repo. https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/ti-connectivity/vpdma-1b8.bin Update the firmware path requested by the VPDMA driver so that it gets looked up correctly in the filesystem. Signed-off-by: Nikhil Devshatwar --- drivers/media/platform/ti-vpe/vpdma.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/media/platform/ti-vpe/vpdma.c b/drivers/media/platform/ti-vpe/vpdma.c index 2e5148ae7a0f..5a378449a4ff 100644 --- a/drivers/media/platform/ti-vpe/vpdma.c +++ b/drivers/media/platform/ti-vpe/vpdma.c @@ -23,7 +23,7 @@ #include "vpdma.h" #include "vpdma_priv.h" -#define VPDMA_FIRMWARE "vpdma-1b8.bin" +#define VPDMA_FIRMWARE "ti-connectivity/vpdma-1b8.bin" const struct vpdma_data_format vpdma_yuv_fmts[] = { [VPDMA_DATA_FMT_Y444] = { -- 2.17.1