From mboxrd@z Thu Jan 1 00:00:00 1970 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 3032CC43219 for ; Wed, 11 May 2022 09:43:56 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230495AbiEKJmg (ORCPT ); Wed, 11 May 2022 05:42:36 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:41454 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233551AbiEKJmM (ORCPT ); Wed, 11 May 2022 05:42:12 -0400 Received: from bhuna.collabora.co.uk (bhuna.collabora.co.uk [46.235.227.227]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id B9A56205EE; Wed, 11 May 2022 02:41:19 -0700 (PDT) Received: from [127.0.0.1] (localhost [127.0.0.1]) (Authenticated sender: shreeya) with ESMTPSA id B695A1F4406C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=collabora.com; s=mail; t=1652262078; bh=UNeNPgpw1R6Fw0IfN3Kfn3Etg70pun757On7XIN528E=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=GTvQde7cLXTWQvjGfBvf2uqJRH3QaSF8ue5Ct5KFK/d6gOnYCp8X6DhpfYR4cWje6 gDWaLWjdAniSw1NLNn4aJTLyCxlheLJlgNFBETvCJEYuddhsz6UcHlIqcbCrieBruG /g1bqQIcreeoDGk8aeM36q2B4nzVfQWP1TiwHHGOJMdMxa3eXc+ogGsriIJa6FMNjl EDicNGlBSAgc3YnY52pe0tQJaSulVm1M8xPWM1fHA3nr4TuMWjpjnpy6Op1s3qC5V/ yWy6+7EJ/Cn3267/5aKjjPByB//tMppBxF6F6mrCvLqbRd0MedZ+93vMtHCott6e35 2sUdg7K6hkSBg== From: Shreeya Patel To: jic23@kernel.org, lars@metafoo.de, robh+dt@kernel.org, Zhigang.Shi@liteon.com, krisman@collabora.com Cc: linux-iio@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, kernel@collabora.com, alvaro.soliverez@collabora.com, Shreeya Patel , Krzysztof Kozlowski Subject: [PATCH v4 1/3] dt-bindings: vendor-prefixes: Add 'ltr' as deprecated vendor prefix Date: Wed, 11 May 2022 15:10:22 +0530 Message-Id: <20220511094024.175994-2-shreeya.patel@collabora.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20220511094024.175994-1-shreeya.patel@collabora.com> References: <20220511094024.175994-1-shreeya.patel@collabora.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 'liteon' is the correct vendor prefix for devices released by LITE-ON Technology Corp. But one of the released device which uses ltr216a light sensor exposes the vendor prefix name as 'ltr' through ACPI. Hence, add 'ltr' as a deprecated vendor prefix which would suppress the following warning in case the compatible string used in ltrf216a driver is "ltr,ltrf216a" WARNING: DT compatible string vendor "ltr" appears un-documented -- check ./Documentation/devicetree/bindings/vendor-prefixes.yaml 364: FILE: drivers/iio/light/ltrf216a.c:313: + { .compatible = "ltr,ltrf216a" }, Reviewed-by: Krzysztof Kozlowski Signed-off-by: Shreeya Patel --- Changes in v2 - Add vendor prefix name as per the alphabetical order. Documentation/devicetree/bindings/vendor-prefixes.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Documentation/devicetree/bindings/vendor-prefixes.yaml b/Documentation/devicetree/bindings/vendor-prefixes.yaml index 01430973ecec..02f94fba03b6 100644 --- a/Documentation/devicetree/bindings/vendor-prefixes.yaml +++ b/Documentation/devicetree/bindings/vendor-prefixes.yaml @@ -716,6 +716,9 @@ patternProperties: description: Loongson Technology Corporation Limited "^lsi,.*": description: LSI Corp. (LSI Logic) + "^ltr,.*": + description: LITE-ON Technology Corp. + deprecated: true "^lwn,.*": description: Liebherr-Werk Nenzing GmbH "^lxa,.*": -- 2.30.2