From patchwork Thu Dec 10 21:21:13 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Rob Herring \(Arm\)" X-Patchwork-Id: 58245 Delivered-To: patch@linaro.org Received: by 10.112.147.194 with SMTP id tm2csp752319lbb; Thu, 10 Dec 2015 13:21:26 -0800 (PST) X-Received: by 10.67.23.135 with SMTP id ia7mr19597073pad.77.1449782481733; Thu, 10 Dec 2015 13:21:21 -0800 (PST) Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id r73si22548351pfa.169.2015.12.10.13.21.21; Thu, 10 Dec 2015 13:21:21 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of devicetree-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 devicetree-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=devicetree-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751741AbbLJVVU (ORCPT + 6 others); Thu, 10 Dec 2015 16:21:20 -0500 Received: from mail-ob0-f179.google.com ([209.85.214.179]:34627 "EHLO mail-ob0-f179.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751491AbbLJVVU (ORCPT ); Thu, 10 Dec 2015 16:21:20 -0500 Received: by obciw8 with SMTP id iw8so68787082obc.1 for ; Thu, 10 Dec 2015 13:21:19 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=eWqITvToZPN8r8bryGtr3HUhycJnBhIiMcyu6qhyQSc=; b=HA5XrR8BmboUh8xKaLG9XfD/xEnm27vRHeMaAKSI1RcZVBuKpP2+uGRXVc3xrK3fNm 574MfOwajFNHpB96CFECFFqm5PKYqf6tskdyNIoFUUZCikTKiDSvRrOL8JX2RKK4oUhZ ucRexatHjh98rDBycS8B2AQ33dJQPzYa01Wa02XZNDHQk5LKEQVuHsudy1s/HJpVWDbk 4Q8qs3EbNFVAoIeGcpuUUj+aBpvwxY2AKRq3oSf3y+ldPgdZf0OOnFhh3FU2gt1P63KY NQta37q+JtfkblsPwKsdzQr/m27YBlfFzRzOOAaNRYS4P+6LTyNrkWQSnNtQXYo65v3Q ZZ3Q== X-Received: by 10.182.153.169 with SMTP id vh9mr11811709obb.83.1449782479622; Thu, 10 Dec 2015 13:21:19 -0800 (PST) Received: from rob-hp-laptop.herring.priv (72-48-98-129.dyn.grandenetworks.net. [72.48.98.129]) by smtp.googlemail.com with ESMTPSA id jy5sm6661848obb.13.2015.12.10.13.21.19 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 10 Dec 2015 13:21:19 -0800 (PST) From: Rob Herring To: Bintian Wang , Andy Gross , arm@kernel.org Cc: devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, Grant Likely , Srinivas Kandagatla , Jorge Ramirez-Ortiz Subject: [PATCH 3/3] arm64: dts: hikey: add label properties to UARTs Date: Thu, 10 Dec 2015 15:21:13 -0600 Message-Id: <1449782473-20880-4-git-send-email-robh@kernel.org> X-Mailer: git-send-email 2.5.0 In-Reply-To: <1449782473-20880-1-git-send-email-robh@kernel.org> References: <1449782473-20880-1-git-send-email-robh@kernel.org> Sender: devicetree-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org Add label properties to provide a way to identify UARTs based on their board or connector name. This follows naming convention in 96boards CE spec. Ports without external connections are not labelled. Signed-off-by: Rob Herring --- arch/arm64/boot/dts/hisilicon/hi6220-hikey.dts | 7 +++++++ 1 file changed, 7 insertions(+) -- 2.5.0 -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/arch/arm64/boot/dts/hisilicon/hi6220-hikey.dts b/arch/arm64/boot/dts/hisilicon/hi6220-hikey.dts index 8d43a0f..8185251 100644 --- a/arch/arm64/boot/dts/hisilicon/hi6220-hikey.dts +++ b/arch/arm64/boot/dts/hisilicon/hi6220-hikey.dts @@ -32,3 +32,10 @@ reg = <0x0 0x0 0x0 0x40000000>; }; }; + +&uart2 { + label = "LS-UART0"; +}; +&uart3 { + label = "LS-UART1"; +};