Received: by 10.223.185.116 with SMTP id b49csp6863722wrg; Wed, 28 Feb 2018 17:34:10 -0800 (PST) X-Google-Smtp-Source: AG47ELuaTSp9F7VI2LwpewGbEdWg+ujgQB7kMMb0VR/FLAX7fLl9sX12X0AlB/iRNKilHSDL6iYb X-Received: by 10.98.139.145 with SMTP id e17mr129471pfl.53.1519868050692; Wed, 28 Feb 2018 17:34:10 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1519868050; cv=none; d=google.com; s=arc-20160816; b=AYDOk47EGyGgT98rzvQ4Ib1LYj2ySVfKgBE02Cy0bc9wBwcvoXJRUjP992yvwcq2ct oBB7Jzx4ARQAtLO2XQDaMfMuB9fBZXWS31k19tF+JHFu2NjzuDQaMiuLHOSWlpDa8p8Y 27M1wmwnlFb+xTF2mRhyJ9AYknCIbE64RZtcm7MwgTNiUl/f3nR9OPtlxZGfszCyL1Wh pNd+0uTuhDRzx2ri+ahoPzCHD0/Yv5JP/60L0JDav/KkpV59jJh1qZK8z+4d4FiIIw2e IAGTxkQvq7/28mYl2xDYoqu616pUvd9IzbjYn2m+lb6x1f8qIkIbG39arfbMvIny5udj 6JFQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:message-id:date:references :in-reply-to:subject:cc:to:from:arc-authentication-results; bh=kTYkv70cybdQfWQx4FLbdcrpcgJQ1Iz6VVz8imjGBEU=; b=GLRxDTwyJ+0rqx0zBAbMeMelnCnRLkj9lgbVFNl7zgEpBi5Fr5gyljEp58up7Y1DIU Tq6sTqa2/qYkZoZ9DHnTsSncQ4NBHpqoD/ldF5TR29KEguhpooXm/rmprR6HMZFXv8X3 IO6YUqAGrbIyJgX+UOfMQQeu1bO6HHKhvMpF8vT9BQCMimFin+ymOIiFqpZIu2hUXVfG 6WO2cD8JCgtl9BFyPYMzgbUBkuDKbQsFy0EJY6MYpFOV9kfJHB3d2zs0upIwJ46FsgCT z1lMkL/ZXGmxYmZWdiO4S3z57jX5nihD0jcCZteNjYB9IKPeYciOn3kiV092X5IHM5WW FZ8g== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id s125si1764015pgc.468.2018.02.28.17.33.55; Wed, 28 Feb 2018 17:34:10 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S935662AbeCABdQ (ORCPT + 99 others); Wed, 28 Feb 2018 20:33:16 -0500 Received: from ozlabs.org ([103.22.144.67]:37763 "EHLO ozlabs.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932134AbeCABdP (ORCPT ); Wed, 28 Feb 2018 20:33:15 -0500 Received: from authenticated.ozlabs.org (localhost [127.0.0.1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPSA id 3zsFLd0n6Dz9s1q; Thu, 1 Mar 2018 12:33:13 +1100 (AEDT) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=ellerman.id.au From: Michael Ellerman To: Rob Herring Cc: devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, Mark Rutland , Benjamin Herrenschmidt , Paul Mackerras , linuxppc-dev@lists.ozlabs.org Subject: Re: [PATCH] powerpc: dts: replace 'linux,stdout-path' with 'stdout-path' In-Reply-To: <20180228224406.7049-1-robh@kernel.org> References: <20180228224406.7049-1-robh@kernel.org> Date: Thu, 01 Mar 2018 12:33:08 +1100 Message-ID: <87606ga8bv.fsf@concordia.ellerman.id.au> MIME-Version: 1.0 Content-Type: text/plain Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Rob Herring writes: > 'linux,stdout-path' has been deprecated for some time in favor of > 'stdout-path'. Now dtc will warn on occurrences of 'linux,stdout-path'. > Search and replace all the of occurrences with 'stdout-path'. This patch looks OK. But please remember that not all device trees are generated with dtc, we still have machines in the wild that have firmware which use "linux,stdout-path" and may never be updated. cheers