From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752507AbdB1MvG (ORCPT ); Tue, 28 Feb 2017 07:51:06 -0500 Received: from foss.arm.com ([217.140.101.70]:36872 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752303AbdB1MvD (ORCPT ); Tue, 28 Feb 2017 07:51:03 -0500 Date: Tue, 28 Feb 2017 12:32:45 +0000 From: Mark Rutland To: Andreas =?utf-8?Q?F=C3=A4rber?= Cc: arm@kernel.org, linux-arm-kernel@lists.infradead.org, mp-cs@actions-semi.com, 96boards@ucrobotics.com, support@lemaker.org, linux-kernel@vger.kernel.org, Rob Herring , Russell King , devicetree@vger.kernel.org Subject: Re: [PATCH v3 11/25] ARM: dts: Add Actions Semi S500 and LeMaker Guitar Message-ID: <20170228123245.GF3691@leverpostej> References: <20170228063535.32069-1-afaerber@suse.de> <20170228063535.32069-12-afaerber@suse.de> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20170228063535.32069-12-afaerber@suse.de> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi, On Tue, Feb 28, 2017 at 07:35:21AM +0100, Andreas Färber wrote: > +/dts-v1/; > + > +#include "s500-guitar.dtsi" > + > +/ { > + compatible = "lemaker,guitar-bb-rev-b", "lemaker,guitar", "actions,s500"; > + model = "LeMaker Guitar Base Board rev. B"; > + > + aliases { > + serial3 = &uart3; > + }; > + > + chosen { > + stdout-path = "serial3:115200n8"; > + }; > +}; > + > +&uart3 { > + status = "okay"; > +}; > +#include "s500.dtsi" > + > +/ { > + compatible = "lemaker,guitar", "actions,s500"; > + > + /delete-node/ memory; Eww. Is this just bodging around skeleton.dtsi? > + > + memory@0 { > + device_type = "memory"; > + reg = <0x0 0x40000000>; > + }; > +}; > +#include "skeleton.dtsi" Please don't include skeleton.dtsi. Please add the relevant nodes and properties explciitly to your dts{i,} files. > + > +#include > + > +/ { Please define your #address-cells and #size-cells here. If you want, add an empty /chosen node (not strictly necessary since your dts file has a non-empty one anyhow). Thanks, Mark.