From owner-svn-src-all@FreeBSD.ORG  Mon Jun 15 21:55:30 2009
Return-Path: <owner-svn-src-all@FreeBSD.ORG>
Delivered-To: svn-src-all@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id F30B9106566B;
	Mon, 15 Jun 2009 21:55:29 +0000 (UTC) (envelope-from ps@FreeBSD.org)
Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c])
	by mx1.freebsd.org (Postfix) with ESMTP id E12488FC1C;
	Mon, 15 Jun 2009 21:55:29 +0000 (UTC) (envelope-from ps@FreeBSD.org)
Received: from svn.freebsd.org (localhost [127.0.0.1])
	by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n5FLtTEN003082;
	Mon, 15 Jun 2009 21:55:29 GMT (envelope-from ps@svn.freebsd.org)
Received: (from ps@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id n5FLtTuQ003081;
	Mon, 15 Jun 2009 21:55:29 GMT (envelope-from ps@svn.freebsd.org)
Message-Id: <200906152155.n5FLtTuQ003081@svn.freebsd.org>
From: Paul Saab <ps@FreeBSD.org>
Date: Mon, 15 Jun 2009 21:55:29 +0000 (UTC)
To: src-committers@freebsd.org, svn-src-all@freebsd.org,
	svn-src-head@freebsd.org
X-SVN-Group: head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Cc: 
Subject: svn commit: r194269 - head/sys/amd64/conf
X-BeenThere: svn-src-all@freebsd.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: "SVN commit messages for the entire src tree \(except for &quot;
	user&quot; and &quot; projects&quot; \)" <svn-src-all.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/svn-src-all>,
	<mailto:svn-src-all-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/svn-src-all>
List-Post: <mailto:svn-src-all@freebsd.org>
List-Help: <mailto:svn-src-all-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/svn-src-all>,
	<mailto:svn-src-all-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 15 Jun 2009 21:55:31 -0000

Author: ps
Date: Mon Jun 15 21:55:29 2009
New Revision: 194269
URL: http://svn.freebsd.org/changeset/base/194269

Log:
  I have several machines where the following warning is printed:
  warning: no time-of-day clock registered, system time will not be set accurately
  
  Provide hints to atrtc on amd64 since it's not being described in
  ACPI on some systems.
  
  Reviewed by:	jhb

Modified:
  head/sys/amd64/conf/GENERIC.hints

Modified: head/sys/amd64/conf/GENERIC.hints
==============================================================================
--- head/sys/amd64/conf/GENERIC.hints	Mon Jun 15 21:54:26 2009	(r194268)
+++ head/sys/amd64/conf/GENERIC.hints	Mon Jun 15 21:55:29 2009	(r194269)
@@ -24,3 +24,6 @@ hint.uart.1.port="0x2F8"
 hint.uart.1.irq="3"
 hint.ppc.0.at="isa"
 hint.ppc.0.irq="7"
+hint.atrtc.0.at="isa"
+hint.atrtc.0.port="0x70"
+hint.atrtc.0.irq="8"