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: 612441 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 2EDB2C433FE for ; Tue, 4 Oct 2022 12:59:01 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229602AbiJDM67 (ORCPT ); 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 Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org 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",