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 5C18CC433FE for ; Fri, 1 Apr 2022 15:53:19 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S236189AbiDAPzD (ORCPT ); Fri, 1 Apr 2022 11:55:03 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:57236 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1352878AbiDAPUM (ORCPT ); Fri, 1 Apr 2022 11:20:12 -0400 Received: from mx0b-001ae601.pphosted.com (mx0a-001ae601.pphosted.com [67.231.149.25]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 87E121D833C; Fri, 1 Apr 2022 08:02:39 -0700 (PDT) Received: from pps.filterd (m0077473.ppops.net [127.0.0.1]) by mx0a-001ae601.pphosted.com (8.16.1.2/8.16.1.2) with ESMTP id 231CJbL4008410; Fri, 1 Apr 2022 10:02:19 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=cirrus.com; h=date : from : to : cc : subject : message-id : references : mime-version : content-type : in-reply-to; s=PODMain02222019; bh=PdYyuppgFyyHYAEkB/pCVaPIbFP1vk2s7gMdjvDUBi4=; b=f5Y3eL2wKH9irysVBEy3+mjnCENUWDETwnm1up4R1WbiMHyCEfXoCAt7cSQ6173TADjD mDGf01jJnd6Bc7PjHkq4b46O/5GXYPBCVO9xjsbdiyHlhV3CosrNcaJOBoe4B8uD8OzX GAzncZec1Pv6uIFqjgOGXLGfHDlyjMcIEBsLwdckEoH85qs/1mncCAZErEXlCj9e6sIg ZKIaOwYXwgQ8Nzr5Oytg9IsCKI0viJFi7SwBNOYrANUfA2WXkYFuHlmd8MuAl4EuAbbs 4HJ500afQQmrPUHkWD/9V4VnSRDzSXKuG5i/9p4h+ZuVb7vXFLUS+lMLsLxU9/SzfEt4 3g== Received: from ediex02.ad.cirrus.com ([84.19.233.68]) by mx0a-001ae601.pphosted.com (PPS) with ESMTPS id 3f2081jg3u-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NOT); Fri, 01 Apr 2022 10:02:18 -0500 Received: from EDIEX01.ad.cirrus.com (198.61.84.80) by EDIEX02.ad.cirrus.com (198.61.84.81) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2375.24; Fri, 1 Apr 2022 16:02:16 +0100 Received: from ediswmail.ad.cirrus.com (198.61.86.93) by EDIEX01.ad.cirrus.com (198.61.84.80) with Microsoft SMTP Server id 15.1.2375.24 via Frontend Transport; Fri, 1 Apr 2022 16:02:16 +0100 Received: from ediswmail.ad.cirrus.com (ediswmail.ad.cirrus.com [198.61.86.93]) by ediswmail.ad.cirrus.com (Postfix) with ESMTP id B32C211D1; Fri, 1 Apr 2022 15:02:16 +0000 (UTC) Date: Fri, 1 Apr 2022 15:02:16 +0000 From: Charles Keepax To: Rob Herring CC: Krzysztof Kozlowski , , , Thierry Reding , Jonathan Hunter , Mauro Carvalho Chehab , Linus Walleij , Sebastian Reichel , Tony Lindgren , Yunfei Dong , - , , , , Subject: Re: [PATCH] dt-bindings: Fix 'enum' lists with duplicate entries Message-ID: <20220401150216.GK38351@ediswmail.ad.cirrus.com> References: <20220401141247.2993925-1-robh@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Disposition: inline In-Reply-To: <20220401141247.2993925-1-robh@kernel.org> User-Agent: Mutt/1.5.21 (2010-09-15) X-Proofpoint-ORIG-GUID: foSJCjKXTi2Rwva_dqLI1GjRicTPaoII X-Proofpoint-GUID: foSJCjKXTi2Rwva_dqLI1GjRicTPaoII X-Proofpoint-Spam-Reason: safe Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org On Fri, Apr 01, 2022 at 09:12:47AM -0500, Rob Herring wrote: > There's no reason to list the same value twice in an 'enum'. Fix all the > occurrences in the tree. A meta-schema change will catch future ones. > > Cc: Krzysztof Kozlowski > Cc: Thierry Reding > Cc: Jonathan Hunter > Cc: Mauro Carvalho Chehab > Cc: Charles Keepax > Cc: Linus Walleij > Cc: Sebastian Reichel > Cc: Tony Lindgren > Cc: Yunfei Dong > Cc: - > Cc: linux-media@vger.kernel.org > Cc: alsa-devel@alsa-project.org > Cc: linux-gpio@vger.kernel.org > Cc: linux-pm@vger.kernel.org > Signed-off-by: Rob Herring > --- Acked-by: Charles Keepax Thanks, Charles