From owner-svn-src-all@FreeBSD.ORG Thu Feb 27 08:36:05 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CF8EADF3; Thu, 27 Feb 2014 08:36:05 +0000 (UTC) Received: from mail-pb0-x22a.google.com (mail-pb0-x22a.google.com [IPv6:2607:f8b0:400e:c01::22a]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8A16219B6; Thu, 27 Feb 2014 08:36:05 +0000 (UTC) Received: by mail-pb0-f42.google.com with SMTP id rr13so2222163pbb.15 for ; Thu, 27 Feb 2014 00:36:05 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=content-type:mime-version:subject:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to; bh=nr4V2z97FNajtFI5vAbEciGwLLiPkTffE1HAzg7bd3s=; b=JtlhS+igCIIMSAFZb7tP/GjwAVW7dm+JtjqRHF9n29igUnF0G+Aj++Uwp6YSUQIJue zDcxNzLwfOqv4a85u762aiwaDM0K9KTxCqgC6OU2SIYMI9ZL5kfeFSe1HRA3U8fjM5YC y2qMNycNs5XOo3ZffQy0lUsvX/TZNqz9GcgBBNYUQ7b1HuVdpmHGcmk8a8JKlZnjh4Wv pTzEdX2DNLlxHvEtEp44HSpSiPovhdWXIuOJGEfAGqND+/PoVLPJPBNfJJGoxpxN4E9A fSZ8GbWLYTE7wJQlN75hR/T+6+DMnk19c6kILEZy2mM7nbuYR2d6Pb6Adjbfib5Pufi8 R2xg== X-Received: by 10.68.93.161 with SMTP id cv1mr12222853pbb.122.1393490165062; Thu, 27 Feb 2014 00:36:05 -0800 (PST) Received: from [10.64.24.120] (dc1-prod.netflix.com. [69.53.236.251]) by mx.google.com with ESMTPSA id zc6sm25895562pab.18.2014.02.27.00.36.01 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 27 Feb 2014 00:36:03 -0800 (PST) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 7.2 \(1874\)) Subject: Re: svn commit: r262548 - head/sys/arm/at91 From: Warner Losh In-Reply-To: <530EF570.1060803@FreeBSD.org> Date: Thu, 27 Feb 2014 00:35:58 -0800 Content-Transfer-Encoding: quoted-printable Message-Id: References: <201402270819.s1R8JJHT013835@svn.freebsd.org> <530EF570.1060803@FreeBSD.org> To: Christian Brueffer X-Mailer: Apple Mail (2.1874) Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org, Warner Losh X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Feb 2014 08:36:05 -0000 On Feb 27, 2014, at 12:21 AM, Christian Brueffer = wrote: > On 2/27/14 9:19 AM, Warner Losh wrote: >> Author: imp >> Date: Thu Feb 27 08:19:19 2014 >> New Revision: 262548 >> URL: http://svnweb.freebsd.org/changeset/base/262548 >>=20 >> Log: >> Style(9) nit: Use tab here. >>=20 >> Modified: >> head/sys/arm/at91/uart_dev_at91usart.c >>=20 >> Modified: head/sys/arm/at91/uart_dev_at91usart.c >> = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D >> --- head/sys/arm/at91/uart_dev_at91usart.c Thu Feb 27 04:45:29 2014 = (r262547) >> +++ head/sys/arm/at91/uart_dev_at91usart.c Thu Feb 27 08:19:19 2014 = (r262548) >> @@ -279,7 +279,7 @@ at91_usart_init(struct uart_bas *bas, in >> * we don't want to hang here forever if the hardware is in a = bad state. >> */ >> if (!(RD4(bas, USART_CSR) & USART_CSR_TXRDY)) >> - DELAY(1000); >> + DELAY(10000); >>=20 >> at91_usart_param(bas, baudrate, databits, stopbits, parity); >>=20 >>=20 >=20 > This also changes the actual DELAY value, was that intended? Yes. It should have been documented when I made the change, but I did = this a while ago and missed the extra zero when I prepared the commit. = My bad. Warner=