From patchwork Fri Sep 30 10:56:02 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 4451 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id EE4DF23FB8 for ; Fri, 30 Sep 2011 11:00:39 +0000 (UTC) Received: from mail-fx0-f52.google.com (mail-fx0-f52.google.com [209.85.161.52]) by fiordland.canonical.com (Postfix) with ESMTP id DF9EFA18540 for ; Fri, 30 Sep 2011 11:00:39 +0000 (UTC) Received: by fxe23 with SMTP id 23so3926767fxe.11 for ; Fri, 30 Sep 2011 04:00:39 -0700 (PDT) Received: by 10.223.55.136 with SMTP id u8mr15362482fag.46.1317380439723; Fri, 30 Sep 2011 04:00:39 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.152.3.234 with SMTP id f10cs47977laf; Fri, 30 Sep 2011 04:00:39 -0700 (PDT) Received: by 10.224.217.132 with SMTP id hm4mr8643734qab.33.1317380437980; Fri, 30 Sep 2011 04:00:37 -0700 (PDT) Received: from mail-qy0-f178.google.com (mail-qy0-f178.google.com [209.85.216.178]) by mx.google.com with ESMTPS id gz8si1303541qab.71.2011.09.30.04.00.37 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 30 Sep 2011 04:00:37 -0700 (PDT) Received-SPF: neutral (google.com: 209.85.216.178 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) client-ip=209.85.216.178; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.216.178 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) smtp.mail=sachin.kamat@linaro.org Received: by qyg14 with SMTP id 14so1940270qyg.16 for ; Fri, 30 Sep 2011 04:00:37 -0700 (PDT) Received: by 10.68.19.100 with SMTP id d4mr58422941pbe.34.1317380436787; Fri, 30 Sep 2011 04:00:36 -0700 (PDT) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id e8sm16932025pbc.8.2011.09.30.04.00.33 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 30 Sep 2011 04:00:35 -0700 (PDT) From: Sachin Kamat To: linux-media@vger.kernel.org Cc: k.debski@samsung.com, kyungmin.park@samsung.com, mchehab@infradead.org, sachin.kamat@linaro.org, patches@linaro.org Subject: [PATCH 1/1] [media] MFC: Change MFC firmware binary name Date: Fri, 30 Sep 2011 16:26:02 +0530 Message-Id: <1317380162-16344-1-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.4.1 This patches renames the MFC firmware binary to avoid SoC name in it. Signed-off-by: Sachin Kamat --- drivers/media/video/s5p-mfc/s5p_mfc_ctrl.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/media/video/s5p-mfc/s5p_mfc_ctrl.c b/drivers/media/video/s5p-mfc/s5p_mfc_ctrl.c index 5f4da80..f2481a8 100644 --- a/drivers/media/video/s5p-mfc/s5p_mfc_ctrl.c +++ b/drivers/media/video/s5p-mfc/s5p_mfc_ctrl.c @@ -38,7 +38,7 @@ int s5p_mfc_alloc_and_load_firmware(struct s5p_mfc_dev *dev) * into kernel. */ mfc_debug_enter(); err = request_firmware((const struct firmware **)&fw_blob, - "s5pc110-mfc.fw", dev->v4l2_dev.dev); + "s5p-mfc.fw", dev->v4l2_dev.dev); if (err != 0) { mfc_err("Firmware is not present in the /lib/firmware directory nor compiled in kernel\n"); return -EINVAL; @@ -116,7 +116,7 @@ int s5p_mfc_reload_firmware(struct s5p_mfc_dev *dev) * into kernel. */ mfc_debug_enter(); err = request_firmware((const struct firmware **)&fw_blob, - "s5pc110-mfc.fw", dev->v4l2_dev.dev); + "s5p-mfc.fw", dev->v4l2_dev.dev); if (err != 0) { mfc_err("Firmware is not present in the /lib/firmware directory nor compiled in kernel\n"); return -EINVAL;