From patchwork Tue Sep 11 17:06:33 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Philippe De Muyter X-Patchwork-Id: 10595955 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 780C6921 for ; Tue, 11 Sep 2018 17:06:55 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 6072B29A64 for ; Tue, 11 Sep 2018 17:06:55 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 5457329AD2; Tue, 11 Sep 2018 17:06:55 +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=-7.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI 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 0C3C529AD3 for ; Tue, 11 Sep 2018 17:06:55 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728125AbeIKWHI (ORCPT ); Tue, 11 Sep 2018 18:07:08 -0400 Received: from smtp2.macqel.be ([109.135.2.61]:58126 "EHLO smtp2.macqel.be" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727332AbeIKWHH (ORCPT ); Tue, 11 Sep 2018 18:07:07 -0400 Received: from localhost (localhost [127.0.0.1]) by smtp2.macqel.be (Postfix) with ESMTP id 199E1130D43; Tue, 11 Sep 2018 19:06:53 +0200 (CEST) X-Virus-Scanned: amavisd-new at macqel.be Received: from smtp2.macqel.be ([127.0.0.1]) by localhost (mail.macqel.be [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id l5LSy550q6v1; Tue, 11 Sep 2018 19:06:51 +0200 (CEST) Received: from perdita.MACQEL (perdita.macqel [10.1.40.53]) by smtp2.macqel.be (Postfix) with ESMTP id 801F8130D3A; Tue, 11 Sep 2018 19:06:51 +0200 (CEST) Received: from perdita.MACQEL (localhost [127.0.0.1]) by perdita.MACQEL (8.14.4/8.14.4/SuSE Linux 0.8) with ESMTP id w8BH6nuX027585; Tue, 11 Sep 2018 19:06:51 +0200 Received: (from p6@localhost) by perdita.MACQEL (8.14.4/8.14.4/Submit) id w8BH6nO6027582; Tue, 11 Sep 2018 19:06:49 +0200 X-Authentication-Warning: perdita.MACQEL: p6 set sender to phdm@macq.eu using -f From: Philippe De Muyter To: linux-media@vger.kernel.org, slongerbeam@gmail.com Cc: Philippe De Muyter Subject: [PATCH v3 2/2] media: imx: capture: use 'v4l2_fill_frmivalenum_from_subdev' Date: Tue, 11 Sep 2018 19:06:33 +0200 Message-Id: <1536685593-27512-3-git-send-email-phdm@macqel.be> X-Mailer: git-send-email 1.8.4 In-Reply-To: <1536685593-27512-1-git-send-email-phdm@macqel.be> References: <1536685593-27512-1-git-send-email-phdm@macqel.be> Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP --- drivers/staging/media/imx/imx-media-capture.c | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/drivers/staging/media/imx/imx-media-capture.c b/drivers/staging/media/imx/imx-media-capture.c index 256039c..688dd7a 100644 --- a/drivers/staging/media/imx/imx-media-capture.c +++ b/drivers/staging/media/imx/imx-media-capture.c @@ -126,28 +126,12 @@ static int capture_enum_frameintervals(struct file *file, void *fh, { struct capture_priv *priv = video_drvdata(file); const struct imx_media_pixfmt *cc; - struct v4l2_subdev_frame_interval_enum fie = { - .index = fival->index, - .pad = priv->src_sd_pad, - .width = fival->width, - .height = fival->height, - .which = V4L2_SUBDEV_FORMAT_ACTIVE, - }; - int ret; cc = imx_media_find_format(fival->pixel_format, CS_SEL_ANY, true); if (!cc) return -EINVAL; - fie.code = cc->codes[0]; - - ret = v4l2_subdev_call(priv->src_sd, pad, enum_frame_interval, - NULL, &fie); - if (ret) - return ret; - - fival->type = V4L2_FRMIVAL_TYPE_DISCRETE; - fival->discrete = fie.interval; + return v4l2_fill_frmivalenum_from_subdev(priv->src_sd, fival, cc->codes[0]); return 0; }