From patchwork Tue Jan 13 02:03:10 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Aguirre Rodriguez, Sergio Alberto" X-Patchwork-Id: 2052 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n0D1xf12016399 for ; Mon, 12 Jan 2009 17:59:41 -0800 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753756AbZAMCDk (ORCPT ); Mon, 12 Jan 2009 21:03:40 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754033AbZAMCDk (ORCPT ); Mon, 12 Jan 2009 21:03:40 -0500 Received: from comal.ext.ti.com ([198.47.26.152]:50582 "EHLO comal.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753602AbZAMCDj convert rfc822-to-8bit (ORCPT ); Mon, 12 Jan 2009 21:03:39 -0500 Received: from dlep95.itg.ti.com ([157.170.170.107]) by comal.ext.ti.com (8.13.7/8.13.7) with ESMTP id n0D23DpL016783; Mon, 12 Jan 2009 20:03:18 -0600 Received: from dlee74.ent.ti.com (localhost [127.0.0.1]) by dlep95.itg.ti.com (8.13.8/8.13.8) with ESMTP id n0D23DkW008540; Mon, 12 Jan 2009 20:03:13 -0600 (CST) Received: from dlee02.ent.ti.com ([157.170.170.17]) by dlee74.ent.ti.com ([157.170.170.8]) with mapi; Mon, 12 Jan 2009 20:03:13 -0600 From: "Aguirre Rodriguez, Sergio Alberto" To: "linux-omap@vger.kernel.org" CC: "linux-media@vger.kernel.org" , "video4linux-list@redhat.com" , Sakari Ailus , "Tuukka.O Toivonen" , "Nagalla, Hari" Date: Mon, 12 Jan 2009 20:03:10 -0600 Subject: [REVIEW PATCH 02/14] v4l2-int-device: add support for VIDIOC_QUERYMENU Thread-Topic: [REVIEW PATCH 02/14] v4l2-int-device: add support for VIDIOC_QUERYMENU Thread-Index: Acl1IxX47mhCPF3sTR+BHSpnoxTiUA== Message-ID: Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: acceptlanguage: en-US MIME-Version: 1.0 Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org Signed-off-by: Tuukka Toivonen Signed-off-by: Sergio Aguirre --- include/media/v4l2-int-device.h | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/include/media/v4l2-int-device.h b/include/media/v4l2-int-device.h index 85a1834..052ffe0 100644 --- a/include/media/v4l2-int-device.h +++ b/include/media/v4l2-int-device.h @@ -178,6 +178,7 @@ enum v4l2_int_ioctl_num { vidioc_int_s_fmt_cap_num, vidioc_int_try_fmt_cap_num, vidioc_int_queryctrl_num, + vidioc_int_querymenu_num, vidioc_int_g_ctrl_num, vidioc_int_s_ctrl_num, vidioc_int_cropcap_num, @@ -279,6 +280,7 @@ V4L2_INT_WRAPPER_1(g_fmt_cap, struct v4l2_format, *); V4L2_INT_WRAPPER_1(s_fmt_cap, struct v4l2_format, *); V4L2_INT_WRAPPER_1(try_fmt_cap, struct v4l2_format, *); V4L2_INT_WRAPPER_1(queryctrl, struct v4l2_queryctrl, *); +V4L2_INT_WRAPPER_1(querymenu, struct v4l2_querymenu, *); V4L2_INT_WRAPPER_1(g_ctrl, struct v4l2_control, *); V4L2_INT_WRAPPER_1(s_ctrl, struct v4l2_control, *); V4L2_INT_WRAPPER_1(cropcap, struct v4l2_cropcap, *);