From patchwork Fri Mar 31 20:48:44 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vagrant Cascadian X-Patchwork-Id: 745805 X-Patchwork-Delegate: sbabic@denx.de Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 3vvtry3wqbz9s0m for ; Sat, 1 Apr 2017 07:49:05 +1100 (AEDT) Received: by lists.denx.de (Postfix, from userid 105) id 42A6DC21C3F; Fri, 31 Mar 2017 20:48:58 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lists.denx.de X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=none autolearn=unavailable autolearn_force=no version=3.4.0 Received: from lists.denx.de (localhost [IPv6:::1]) by lists.denx.de (Postfix) with ESMTP id EB5C2C21C31; Fri, 31 Mar 2017 20:48:55 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 33DD6C21C31; Fri, 31 Mar 2017 20:48:55 +0000 (UTC) Received: from cascadia.aikidev.net (cascadia.aikidev.net [173.255.214.101]) by lists.denx.de (Postfix) with ESMTP id B33C7C21C27 for ; Fri, 31 Mar 2017 20:48:54 +0000 (UTC) Received: from localhost (75-164-202-26.ptld.qwest.net [75.164.202.26]) (Authenticated sender: vagrant@aikidev.net) by cascadia.aikidev.net (Postfix) with ESMTPSA id CFE8D1AA9A; Fri, 31 Mar 2017 13:48:53 -0700 (PDT) From: Vagrant Cascadian To: u-boot@lists.denx.de Date: Fri, 31 Mar 2017 13:48:44 -0700 Message-Id: <20170331204844.32243-1-vagrant@debian.org> X-Mailer: git-send-email 2.11.0 Cc: Vagrant Cascadian , Fabio Estevam Subject: [U-Boot] [PATCH] Set console speed to 115200 on mx6cuboxi. X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.18 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" By default, u-boot itself outputs on the serial console at 115200, so it may as well pass the same value to the booted operating system as well. Signed-off-by: Vagrant Cascadian Reviewed-by: Fabio Estevam --- include/configs/mx6cuboxi.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/configs/mx6cuboxi.h b/include/configs/mx6cuboxi.h index 2782911da3..84fdf656cd 100644 --- a/include/configs/mx6cuboxi.h +++ b/include/configs/mx6cuboxi.h @@ -84,7 +84,7 @@ "initrd_high=0xffffffff\0" \ "fdt_high=0xffffffff\0" \ "ip_dyn=yes\0" \ - "console=" CONSOLE_DEV "\0" \ + "console=" CONSOLE_DEV ",115200\0" \ "bootm_size=0x10000000\0" \ "mmcdev=" __stringify(CONFIG_SYS_MMC_ENV_DEV) "\0" \ "update_sd_firmware=" \