From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932503AbdBHN21 (ORCPT ); Wed, 8 Feb 2017 08:28:27 -0500 Received: from mail-it0-f48.google.com ([209.85.214.48]:35963 "EHLO mail-it0-f48.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933129AbdBHN0p (ORCPT ); Wed, 8 Feb 2017 08:26:45 -0500 MIME-Version: 1.0 In-Reply-To: References: <1486485683-11427-1-git-send-email-bgolaszewski@baylibre.com> <1486485683-11427-11-git-send-email-bgolaszewski@baylibre.com> From: Bartosz Golaszewski Date: Wed, 8 Feb 2017 14:26:06 +0100 Message-ID: Subject: Re: [PATCH 10/10] ARM: davinci: add pdata-quirks for da850-evm vpif display To: Kevin Hilman Cc: Sekhar Nori , Patrick Titiano , Michael Turquette , Rob Herring , Mark Rutland , Russell King , Alexandre Bailon , David Lechner , Laurent Pinchart , Mauro Carvalho Chehab , Lad Prabhakar , linux-devicetree , LKML , arm-soc , linux-media@vger.kernel.org Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 2017-02-07 19:20 GMT+01:00 Kevin Hilman : > Bartosz Golaszewski writes: > >> Similarly to vpif capture: we need to register the vpif display driver >> and the corresponding adv7343 encoder in pdata-quirks as the DT >> support is not complete. > > To add a bit more detail to the changelog: DT support is not complete > since there isn't currently a way to define the output_routing in the > V4L2 drivers (c.f. s_routing) via DT. > I'll add this in v2. >> Signed-off-by: Bartosz Golaszewski > > minor nit below, otherwise > > Reviewed-by: Kevin Hilman > >> --- >> arch/arm/mach-davinci/pdata-quirks.c | 86 +++++++++++++++++++++++++++++++++++- >> 1 file changed, 85 insertions(+), 1 deletion(-) >> >> diff --git a/arch/arm/mach-davinci/pdata-quirks.c b/arch/arm/mach-davinci/pdata-quirks.c >> index 09f62ac..0a55546 100644 >> --- a/arch/arm/mach-davinci/pdata-quirks.c >> +++ b/arch/arm/mach-davinci/pdata-quirks.c >> @@ -9,13 +9,17 @@ >> */ >> #include >> #include >> +#include >> >> #include >> +#include >> >> #include >> #include >> #include >> >> +#define DA850_EVM_UI_EXP_SEL_VPIF_DISP 5 >> + >> struct pdata_init { >> const char *compatible; >> void (*fn)(void); >> @@ -107,7 +111,78 @@ static struct vpif_capture_config da850_vpif_capture_config = { >> }, >> .card_name = "DA850/OMAP-L138 Video Capture", >> }; >> +#endif /* IS_ENABLED(CONFIG_VIDEO_DAVINCI_VPIF_CAPTURE) */ >> + >> +#if defined(CONFIG_DA850_UI_SD_VIDEO_PORT) > > Why not IS_ENABLED(CONFIG_VIDEO_DAVINCI_VPIF_CAPTURE) also here? Just a reflex ;) I'll fix this too. Thanks, Bartosz