From patchwork Wed Sep 7 22:25:03 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 9320151 X-Patchwork-Delegate: geert@linux-m68k.org Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 9BE3360869 for ; Wed, 7 Sep 2016 22:24:50 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 780AD2942F for ; Wed, 7 Sep 2016 22:24:50 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 6CD0429448; Wed, 7 Sep 2016 22:24:50 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 141022943E for ; Wed, 7 Sep 2016 22:24:50 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751971AbcIGWYt (ORCPT ); Wed, 7 Sep 2016 18:24:49 -0400 Received: from galahad.ideasonboard.com ([185.26.127.97]:54028 "EHLO galahad.ideasonboard.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751166AbcIGWYp (ORCPT ); Wed, 7 Sep 2016 18:24:45 -0400 Received: from avalon.bb.dnainternet.fi (85-23-193-79.bb.dnainternet.fi [85.23.193.79]) by galahad.ideasonboard.com (Postfix) with ESMTPSA id 7F0AE201F5; Thu, 8 Sep 2016 00:24:15 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1473287055; bh=Y8jD9b1fm5PIaDsEEilX81AYozarDp6Njm5E6OUyq/g=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=hqtddcNSLTH1VxLWCSqFYf9OSBvARMe03BwkBjaxJuH2u90xjXoxiDYjLCWZNVvrm rvwz2lDvuLf3MNmyRsicFU5pwl9llM0srPeph7A9GTn/IYC168gL8IEa7Ugmx1uzqa rgsUzD+3tqClI10JCV5Z1jG0D5daS9EXybg7VGzY= From: Laurent Pinchart To: linux-media@vger.kernel.org Cc: linux-renesas-soc@vger.kernel.org, Kieran Bingham Subject: [PATCH v3 03/10] v4l: Extend FCP compatible list to support the FDP Date: Thu, 8 Sep 2016 01:25:03 +0300 Message-Id: <1473287110-780-4-git-send-email-laurent.pinchart+renesas@ideasonboard.com> X-Mailer: git-send-email 2.7.3 In-Reply-To: <1473287110-780-1-git-send-email-laurent.pinchart+renesas@ideasonboard.com> References: <1473287110-780-1-git-send-email-laurent.pinchart+renesas@ideasonboard.com> Sender: linux-renesas-soc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-renesas-soc@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Kieran Bingham The FCP must be powered up for the FDP1 to function, even when the FDP1 does not make use of the FCNL features. Extend the compatible list to allow us to use the power domain and runtime-pm support. Signed-off-by: Kieran Bingham Acked-by: Laurent Pinchart Signed-off-by: Laurent Pinchart --- drivers/media/platform/rcar-fcp.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/media/platform/rcar-fcp.c b/drivers/media/platform/rcar-fcp.c index bc50c69ee0c5..7e944479205d 100644 --- a/drivers/media/platform/rcar-fcp.c +++ b/drivers/media/platform/rcar-fcp.c @@ -166,6 +166,7 @@ static int rcar_fcp_remove(struct platform_device *pdev) static const struct of_device_id rcar_fcp_of_match[] = { { .compatible = "renesas,fcpv" }, + { .compatible = "renesas,fcpf" }, { }, };