From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-1.0 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id EB34BC43381 for ; Tue, 19 Feb 2019 05:11:26 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id BA0A9217D9 for ; Tue, 19 Feb 2019 05:11:26 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726008AbfBSFLZ (ORCPT ); Tue, 19 Feb 2019 00:11:25 -0500 Received: from mx.socionext.com ([202.248.49.38]:31229 "EHLO mx.socionext.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725763AbfBSFLZ (ORCPT ); Tue, 19 Feb 2019 00:11:25 -0500 Received: from unknown (HELO kinkan-ex.css.socionext.com) ([172.31.9.52]) by mx.socionext.com with ESMTP; 19 Feb 2019 14:11:22 +0900 Received: from mail.mfilter.local (m-filter-1 [10.213.24.61]) by kinkan-ex.css.socionext.com (Postfix) with ESMTP id EF03C180C10; Tue, 19 Feb 2019 14:11:22 +0900 (JST) Received: from 172.31.9.51 (172.31.9.51) by m-FILTER with ESMTP; Tue, 19 Feb 2019 14:11:22 +0900 Received: from yuzu.css.socionext.com (yuzu [172.31.8.45]) by kinkan.css.socionext.com (Postfix) with ESMTP id 695371A04E1; Tue, 19 Feb 2019 14:11:22 +0900 (JST) Received: from [127.0.0.1] (unknown [10.213.119.83]) by yuzu.css.socionext.com (Postfix) with ESMTP id 50878120459; Tue, 19 Feb 2019 14:11:22 +0900 (JST) Subject: Re: [PATCH v2 13/15] ARM: dts: milbeaut: Add device tree set for the Milbeaut M10V board To: Arnd Bergmann Cc: DTML , Linux Kernel Mailing List , Linux ARM , Rob Herring , Mark Rutland , Takao Orito , Kazuhiro Kasai , Shinji Kanematsu , Jassi Brar , Masami Hiramatsu References: <1549628920-32623-1-git-send-email-sugaya.taichi@socionext.com> From: "Sugaya, Taichi" Message-ID: Date: Tue, 19 Feb 2019 14:11:21 +0900 User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:60.0) Gecko/20100101 Thunderbird/60.5.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi, Thank you for you comments. On 2019/02/18 21:09, Arnd Bergmann wrote: > On Fri, Feb 8, 2019 at 1:28 PM Sugaya Taichi > wrote: >> + >> + aliases { >> + serial1 = &uart1; >> + }; > > Maybe start with serial0 here? It seems unusual to start > counting at 1. > The M10V evaluation board(EVB) uses a console with uart ch1, so this alias number is derived from the used channel one. Therefore it is no problem to change the alias number to 0. >> + chosen { >> + bootargs = "init=/sbin/finit rootwait earlycon"; > > The /sbin/finit argument seems user space specific, so you probably don't > want this in the dts file but rather pass it from the boot loader. > Possible drop the bootargs entirely. > Okay, remove the arg from the dts and add to bootargs instead. Thanks, Sugaya Taichi > Arnd >