From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: From: Daniel Verkamp Subject: [PATCH] Documentation/devicetree: fix initrd property names Date: Mon, 7 Jan 2019 13:31:52 -0800 Message-Id: <20190107213152.43797-1-dverkamp@chromium.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit To: devicetree@vger.kernel.org Cc: Rob Herring , Mark Rutland , Daniel Verkamp List-ID: Documentation/devicetree/bindings/chosen.txt documents Linux-specific chosen node initrd properties with the names "linux,initrd-start" and "linux,initrd-end", whereas usage-model.txt had these as just "initrd-start" and "initrd-end". As far as I can tell, the code agrees with the chosen.txt documentation (only the "linux,"-prefixed properties work), so update usage-model.txt to match. Signed-off-by: Daniel Verkamp --- Documentation/devicetree/usage-model.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/devicetree/usage-model.txt b/Documentation/devicetree/usage-model.txt index 33a8aaac02a8..0ec55edf7580 100644 --- a/Documentation/devicetree/usage-model.txt +++ b/Documentation/devicetree/usage-model.txt @@ -187,8 +187,8 @@ Linux it will look something like this: chosen { bootargs = "console=ttyS0,115200 loglevel=8"; - initrd-start = <0xc8000000>; - initrd-end = <0xc8200000>; + linux,initrd-start = <0xc8000000>; + linux,initrd-end = <0xc8200000>; }; The bootargs property contains the kernel arguments, and the initrd-* -- 2.20.1.97.g81188d93c3-goog