From patchwork Tue Oct 4 12:54:46 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Simon Ser X-Patchwork-Id: 86491 X-Patchwork-Delegate: hverkuil@xs4all.nl Received: from vger.kernel.org ([23.128.96.18]) by www.linuxtv.org with esmtp (Exim 4.92) (envelope-from ) id 1ofhVq-00BVnQ-LI; Tue, 04 Oct 2022 12:59:07 +0000 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229602AbiJDM67 (ORCPT + 1 other); Tue, 4 Oct 2022 08:58:59 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37668 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230266AbiJDM5s (ORCPT ); Tue, 4 Oct 2022 08:57:48 -0400 Received: from mail-4317.proton.ch (mail-4317.proton.ch [185.70.43.17]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 41906647C for ; Tue, 4 Oct 2022 05:54:53 -0700 (PDT) Date: Tue, 04 Oct 2022 12:54:46 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=emersion.fr; s=protonmail3; t=1664888090; x=1665147290; bh=L4aMO6dCtkwy80fgIigNA6sy15pUSx1p9BBpJ/q48d4=; h=Date:To:From:Subject:Message-ID:Feedback-ID:From:To:Cc:Date: Subject:Reply-To:Feedback-ID:Message-ID; b=OAumLBJgYxNFxZb+jMKhA9PP0+y/s99CwOPVspgnArD123g2uUuPNlmkX/nRFE2IG CKAh3alJDWZ+c2LUjWClH8eGkF6pS3sPYMHEHbjYp+Ov4/b6Xe301aIrIbLPVa/XEV Cr275KNAtCdAkT/7kZ/k1BrqXGQFEhe3lQKLjhhoAzOvqUYEOi7W1F9Og4jWYSiAdT mDU1YM5hunHcGXKm+6/HuetLJnT91UXXiJ6vyvqh+fnMWwczK7kDxT5hdghEszximt VkM7akl42QiNjK6ycNkVCm3vEz4N8M7Jo41GXIMuyERGQbpYNBBeEb1YiSn5mrtSGF 2eodTNs0ae4gA== To: linux-media@vger.kernel.org From: Simon Ser Subject: [PATCH] edid-decode: fix typo for tiled display bezel Message-ID: <20221004125439.2826-1-contact@emersion.fr> Feedback-ID: 1358184:user:proton MIME-Version: 1.0 X-Spam-Status: No, score=-0.7 required=5.0 tests=BAYES_05,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,RCVD_IN_MSPIKE_H2,SPF_HELO_NONE, SPF_PASS autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on lindbergh.monkeyblade.net Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org X-LSpam-Score: -2.5 (--) X-LSpam-Report: No, score=-2.5 required=5.0 tests=BAYES_00=-1.9,DKIM_SIGNED=0.1,DKIM_VALID=-0.1,DKIM_VALID_AU=-0.1,HEADER_FROM_DIFFERENT_DOMAINS=0.5,MAILING_LIST_MULTI=-1 autolearn=ham autolearn_force=no The spec uses the word "bezel", not "bevel". Signed-off-by: Simon Ser --- parse-displayid-block.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/parse-displayid-block.cpp b/parse-displayid-block.cpp index a754483b3b73..6dddad37584d 100644 --- a/parse-displayid-block.cpp +++ b/parse-displayid-block.cpp @@ -1027,20 +1027,20 @@ void edid_state::parse_displayid_tiled_display_topology(const unsigned char *x, printf(" Tile resolution: %ux%u\n", tile_width + 1, tile_height + 1); if (caps & 0x40) { if (pix_mult) { - printf(" Top bevel size: %.1f pixels\n", + printf(" Top bezel size: %.1f pixels\n", pix_mult * x[12] / 10.0); - printf(" Bottom bevel size: %.1f pixels\n", + printf(" Bottom bezel size: %.1f pixels\n", pix_mult * x[13] / 10.0); - printf(" Right bevel size: %.1f pixels\n", + printf(" Right bezel size: %.1f pixels\n", pix_mult * x[14] / 10.0); - printf(" Left bevel size: %.1f pixels\n", + printf(" Left bezel size: %.1f pixels\n", pix_mult * x[15] / 10.0); } else { - fail("No bevel information, but the pixel multiplier is non-zero.\n"); + fail("No bezel information, but the pixel multiplier is non-zero.\n"); } printf(" Tile resolution: %ux%u\n", tile_width + 1, tile_height + 1); } else if (pix_mult) { - fail("No bevel information, but the pixel multiplier is non-zero.\n"); + fail("No bezel information, but the pixel multiplier is non-zero.\n"); } if (is_v2) printf(" Tiled Display Manufacturer/Vendor ID: %02X-%02X-%02X\n",