From patchwork Sat Oct 20 13:31:40 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Lad, Prabhakar" X-Patchwork-Id: 1621421 Return-Path: X-Original-To: patchwork-linux-media@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id 9B65BE00B1 for ; Sat, 20 Oct 2012 13:32:21 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755595Ab2JTNcC (ORCPT ); Sat, 20 Oct 2012 09:32:02 -0400 Received: from mail-pa0-f46.google.com ([209.85.220.46]:53737 "EHLO mail-pa0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755537Ab2JTNcA (ORCPT ); Sat, 20 Oct 2012 09:32:00 -0400 Received: by mail-pa0-f46.google.com with SMTP id hz1so987102pad.19 for ; Sat, 20 Oct 2012 06:32:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer; bh=t2uhLo0mBv3fyG8cEaz272jVPGL6wCFJ6Kd7ukn1TfY=; b=K2dDz8e9Kz04r4K42L1o63rsEACZH9QTel1hIQAE6z4whWzH2RC4IwmQJ5m54ZoUqc dMZbyvXr6zxKXJwc9UQsuqOQyb5xziwd8vexCYEkvBUfEDCU9ycSbDqJWb2UdWbRlVvo CUB23c22x3SefKvbuAQ6d95HqtREIpI6OKhLfdG7rNM5Ra08Lvlujhht0Nz731gKOjpx di55qAlwLb2ridNd+yrFOSGTmBGMMiLYia5GZw2cjelSHlddMV0dkImVt0e+s5AWrgfz mwFg+pW6sG8x5cUe0FbXhkj41o1mWnGJRwIWw1MyUADAZ+0LanJBunMU26qxURD3zIYa 8FKw== Received: by 10.68.241.137 with SMTP id wi9mr15071428pbc.158.1350739920273; Sat, 20 Oct 2012 06:32:00 -0700 (PDT) Received: from localhost.localdomain ([122.166.13.141]) by mx.google.com with ESMTPS id iu8sm2846329pbc.71.2012.10.20.06.31.55 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 20 Oct 2012 06:31:59 -0700 (PDT) From: Prabhakar Lad To: LAK Cc: Manjunath Hadli , Mauro Carvalho Chehab , LMML , LKML , DLOS , "Lad, Prabhakar" , Sekhar Nori Subject: [PATCH] ARM: dm365: replace V4L2_OUT_CAP_CUSTOM_TIMINGS with V4L2_OUT_CAP_DV_TIMINGS Date: Sat, 20 Oct 2012 19:01:40 +0530 Message-Id: <1350739900-25065-1-git-send-email-prabhakar.lad@ti.com> X-Mailer: git-send-email 1.7.4.1 Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org From: Lad, Prabhakar This patch replaces V4L2_OUT_CAP_CUSTOM_TIMINGS macro with V4L2_OUT_CAP_DV_TIMINGS. As V4L2_OUT_CAP_CUSTOM_TIMINGS is being phased out. Signed-off-by: Lad, Prabhakar Signed-off-by: Manjunath Hadli Cc: Sekhar Nori --- This patch is based on the following patch series, ARM: davinci: dm365 EVM: add support for VPBE display (https://patchwork.kernel.org/patch/1295071/) arch/arm/mach-davinci/board-dm365-evm.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/arm/mach-davinci/board-dm365-evm.c b/arch/arm/mach-davinci/board-dm365-evm.c index 2924d61..771abb5 100644 --- a/arch/arm/mach-davinci/board-dm365-evm.c +++ b/arch/arm/mach-davinci/board-dm365-evm.c @@ -514,7 +514,7 @@ static struct vpbe_output dm365evm_vpbe_outputs[] = { .index = 1, .name = "Component", .type = V4L2_OUTPUT_TYPE_ANALOG, - .capabilities = V4L2_OUT_CAP_CUSTOM_TIMINGS, + .capabilities = V4L2_OUT_CAP_DV_TIMINGS, }, .subdev_name = VPBE_VENC_SUBDEV_NAME, .default_mode = "480p59_94",