From patchwork Fri Jan 15 16:38:27 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?q?Heiko_St=C3=BCbner?= X-Patchwork-Id: 364906 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-16.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI, SPF_HELO_NONE, SPF_PASS, URIBL_BLOCKED, USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 69D5EC433DB for ; Fri, 15 Jan 2021 16:39:32 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 2C996221FA for ; Fri, 15 Jan 2021 16:39:32 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726721AbhAOQjQ (ORCPT ); Fri, 15 Jan 2021 11:39:16 -0500 Received: from gloria.sntech.de ([185.11.138.130]:58664 "EHLO gloria.sntech.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726137AbhAOQjQ (ORCPT ); Fri, 15 Jan 2021 11:39:16 -0500 Received: from ip5f5aa64a.dynamic.kabel-deutschland.de ([95.90.166.74] helo=phil.sntech) by gloria.sntech.de with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1l0S7N-0006YA-RM; Fri, 15 Jan 2021 17:38:33 +0100 From: Heiko Stuebner To: dafna.hirschfeld@collabora.com, helen.koike@collabora.com, linux-media@vger.kernel.org, mchehab@kernel.org, Laurent.pinchart@ideasonboard.com, hverkuil@xs4all.nl Cc: linux-rockchip@lists.infradead.org, ezequiel@collabora.com, christoph.muellner@theobroma-systems.com, heiko@sntech.de, tfiga@chromium.org, Heiko Stuebner Subject: [PATCH v4 1/3] media: rockchip: rkisp1: fix comment about number of histogram sub-windows Date: Fri, 15 Jan 2021 17:38:27 +0100 Message-Id: <20210115163829.217131-2-heiko@sntech.de> X-Mailer: git-send-email 2.29.2 In-Reply-To: <20210115163829.217131-1-heiko@sntech.de> References: <20210115163829.217131-1-heiko@sntech.de> MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org From: Heiko Stuebner The histogram data is divided into 16 sub-windows, not 25. See RKISP1_CIF_ISP_HIST_BIN_N_MAX being defined as 16 for reference and this also matches the datasheet. Signed-off-by: Heiko Stuebner --- include/uapi/linux/rkisp1-config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/uapi/linux/rkisp1-config.h b/include/uapi/linux/rkisp1-config.h index 6e449e784260..ba443771cc0b 100644 --- a/include/uapi/linux/rkisp1-config.h +++ b/include/uapi/linux/rkisp1-config.h @@ -846,7 +846,7 @@ struct rkisp1_cif_isp_af_stat { * * @hist_bins: measured bin counters * - * Measurement window divided into 25 sub-windows, set + * Measurement window divided into 16 sub-windows, set * with ISP_HIST_XXX */ struct rkisp1_cif_isp_hist_stat {