From owner-svn-src-stable@FreeBSD.ORG Fri Jun 15 17:01:13 2012 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (unknown [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 15A991065781; Fri, 15 Jun 2012 17:01:13 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [69.147.83.44]) by mx1.freebsd.org (Postfix) with ESMTP id F2BD48FC0A; Fri, 15 Jun 2012 17:01:12 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q5FH1Cpa093390; Fri, 15 Jun 2012 17:01:12 GMT (envelope-from imp@svn.freebsd.org) Received: (from imp@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q5FH1C3n093388; Fri, 15 Jun 2012 17:01:12 GMT (envelope-from imp@svn.freebsd.org) Message-Id: <201206151701.q5FH1C3n093388@svn.freebsd.org> From: Warner Losh Date: Fri, 15 Jun 2012 17:01:12 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r237138 - stable/8/sys/arm/at91 X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Jun 2012 17:01:13 -0000 Author: imp Date: Fri Jun 15 17:01:12 2012 New Revision: 237138 URL: http://svn.freebsd.org/changeset/base/237138 Log: Add a band-aide for MFCs: at91_is_rm92 is always true in 8 until SAM9 support is MFC'd. The recent change to spi now references this, so bring it in as a forward compatability. Modified: stable/8/sys/arm/at91/at91var.h Modified: stable/8/sys/arm/at91/at91var.h ============================================================================== --- stable/8/sys/arm/at91/at91var.h Fri Jun 15 16:50:32 2012 (r237137) +++ stable/8/sys/arm/at91/at91var.h Fri Jun 15 17:01:12 2012 (r237138) @@ -45,4 +45,6 @@ struct at91_ivar { extern uint32_t at91_master_clock; +#define at91_is_rm92() (1) /* Only support AT91RM9200 atm -- helps with MFCs */ + #endif /* _AT91VAR_H_ */