Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759138AbdLRUUO (ORCPT ); Mon, 18 Dec 2017 15:20:14 -0500 Received: from mail-oi0-f68.google.com ([209.85.218.68]:45632 "EHLO mail-oi0-f68.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752935AbdLRUUL (ORCPT ); Mon, 18 Dec 2017 15:20:11 -0500 X-Google-Smtp-Source: ACJfBouNCUGzIjZEBysbks2O5pqTyREPiaAYApFZI1AID8PXkATlLEdn0+4kmH/AjxbWSQrBTCUwL2BHytaaOw+D0qk= MIME-Version: 1.0 In-Reply-To: <1513610272-7824-10-git-send-email-ludovic.Barre@st.com> References: <1513610272-7824-1-git-send-email-ludovic.Barre@st.com> <1513610272-7824-10-git-send-email-ludovic.Barre@st.com> From: Arnd Bergmann Date: Mon, 18 Dec 2017 21:20:10 +0100 X-Google-Sender-Auth: Gmpe9fK0UjgX-RhNAvapBkVLFcE Message-ID: Subject: Re: [PATCH V2 9/9] ARM: dts: stm32: add initial support of stm32mp157c eval board To: Ludovic Barre Cc: Russell King , Rob Herring , Linus Walleij , Maxime Coquelin , Alexandre Torgue , Gerald Baeza , Linux ARM , Linux Kernel Mailing List , DTML Content-Type: text/plain; charset="UTF-8" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 671 Lines: 19 On Mon, Dec 18, 2017 at 4:17 PM, Ludovic Barre wrote: = > + > +/ { > + model = "STMicroelectronics STM32MP157C eval daughter"; > + compatible = "st,stm32mp157c-ed1", "st,stm32mp157"; > + > + chosen { > + bootargs = "earlyprintk console=ttySTM3,115200 root=/dev/ram"; > + stdout-path = "serial3:115200n8"; > + }; I'd remove the bootargs here and let the boot loader take care of that, in particular since all three arguments are rather old-school: earlycon is preferred over earlyprintk, console= should not be needed if you set stdout-path, and /dev/ram is obsoleted by initramfs. Arnd