From patchwork Mon Mar 27 14:03:40 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lee Jones X-Patchwork-Id: 96076 Delivered-To: patch@linaro.org Received: by 10.140.89.233 with SMTP id v96csp1242787qgd; Mon, 27 Mar 2017 07:04:43 -0700 (PDT) X-Received: by 10.98.18.66 with SMTP id a63mr25381779pfj.188.1490623483048; Mon, 27 Mar 2017 07:04:43 -0700 (PDT) Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id d198si765526pga.192.2017.03.27.07.04.42; Mon, 27 Mar 2017 07:04:43 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-serial-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; dkim=neutral (body hash did not verify) header.i=@linaro.org; spf=pass (google.com: best guess record for domain of linux-serial-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-serial-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=linaro.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753012AbdC0OEm (ORCPT + 2 others); Mon, 27 Mar 2017 10:04:42 -0400 Received: from mail-wr0-f181.google.com ([209.85.128.181]:33369 "EHLO mail-wr0-f181.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752976AbdC0OD6 (ORCPT ); Mon, 27 Mar 2017 10:03:58 -0400 Received: by mail-wr0-f181.google.com with SMTP id w43so46156410wrb.0 for ; Mon, 27 Mar 2017 07:03:52 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=from:to:cc:subject:date:message-id; bh=jtdmi2Uo1v0ZjCN+Zz4XviAcR4DMAYWvRxriUdE9mnk=; b=bMiX7ZzaF+VNuO/BSPwZrf3QWV8VhojaT5t0dG/U9QtSby9BvjiHzxgPZ9BUrU28tK abwssk/tmN0kUsqVaJBEtWi90i2qwzkmwhd2mB9AbkB707S1yPy9KtaZNPVZ6KYhdSEA luZYpw6qIwFaD3nwNFZJezmfkhwSBA6rouDfI= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=jtdmi2Uo1v0ZjCN+Zz4XviAcR4DMAYWvRxriUdE9mnk=; b=rdJxxc70SKOwvwiEVqX2fDzCViNGvyw33R+aQpFoF98MUdYmmdYzw+iV+5livtDr6g Qo+UJXKsRqCUqPYyMO9iJhDAOWeYJuxFhNiGQDWjpx+02aqDVDqwT0Ha/hYfD5i2xMKP CdTpfNIpj+0QBYLatkl6gHNlm0Zf9oAnUaL5YKfPoj9nRWbqnAzrsXpp4vNzbFFBb9R/ xzZGkGLQYqSM9ZYeR4mNcjOOFLAYNi3NEeU67csjWVjOm2SJIKa4JNXqYfa60UmBB9nw RNgEIMc8hhvrvN9VCTYGYrYPbHGbRG3LF3aagleLT4UDcwzDqJkQrqJLW9ZxunyObAcV Xg5A== X-Gm-Message-State: AFeK/H19ygvEUxVLbAgqp5IKq7tSETQfROBvenxuLgAlyODWcWVuxQaLedadnPo8jUHXXLjZ X-Received: by 10.223.136.214 with SMTP id g22mr19609991wrg.37.1490623426327; Mon, 27 Mar 2017 07:03:46 -0700 (PDT) Received: from localhost.localdomain (host86-185-202-83.range86-185.btcentralplus.com. [86.185.202.83]) by smtp.gmail.com with ESMTPSA id g41sm832684wrg.53.2017.03.27.07.03.45 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 27 Mar 2017 07:03:45 -0700 (PDT) From: Lee Jones To: patrice.chotard@st.com, gregkh@linuxfoundation.org, jslaby@suse.com Cc: linux-serial@vger.kernel.org, Lee Jones Subject: [PATCH] serial: st-asc: Change default baudrate from 9600 to 115200 Date: Mon, 27 Mar 2017 15:03:40 +0100 Message-Id: <20170327140340.13459-1-lee.jones@linaro.org> X-Mailer: git-send-email 2.9.3 Sender: linux-serial-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-serial@vger.kernel.org 9600 is old school. Most applications use 115200 as the default baud these days. Signed-off-by: Lee Jones --- drivers/tty/serial/st-asc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- 2.9.3 -- To unsubscribe from this list: send the line "unsubscribe linux-serial" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Acked-by: Patrice Chotard diff --git a/drivers/tty/serial/st-asc.c b/drivers/tty/serial/st-asc.c index bcf1d33..be35b53 100644 --- a/drivers/tty/serial/st-asc.c +++ b/drivers/tty/serial/st-asc.c @@ -917,7 +917,7 @@ static void asc_console_write(struct console *co, const char *s, unsigned count) static int asc_console_setup(struct console *co, char *options) { struct asc_port *ascport; - int baud = 9600; + int baud = 115200; int bits = 8; int parity = 'n'; int flow = 'n';