From owner-svn-src-head@FreeBSD.ORG Sun Mar 31 12:51:57 2013 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 4CC42455; Sun, 31 Mar 2013 12:51:57 +0000 (UTC) (envelope-from ian@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 3EFA7B59; Sun, 31 Mar 2013 12:51:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2VCpuwS044975; Sun, 31 Mar 2013 12:51:56 GMT (envelope-from ian@svn.freebsd.org) Received: (from ian@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2VCpuxl044974; Sun, 31 Mar 2013 12:51:56 GMT (envelope-from ian@svn.freebsd.org) Message-Id: <201303311251.r2VCpuxl044974@svn.freebsd.org> From: Ian Lepore Date: Sun, 31 Mar 2013 12:51:56 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r248944 - head/sys/arm/at91 X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Mar 2013 12:51:57 -0000 Author: ian Date: Sun Mar 31 12:51:56 2013 New Revision: 248944 URL: http://svnweb.freebsd.org/changeset/base/248944 Log: Fix a typo in the CF device driver name that prevented instantiation. Modified: head/sys/arm/at91/at91rm9200.c Modified: head/sys/arm/at91/at91rm9200.c ============================================================================== --- head/sys/arm/at91/at91rm9200.c Sun Mar 31 10:20:29 2013 (r248943) +++ head/sys/arm/at91/at91rm9200.c Sun Mar 31 12:51:56 2013 (r248944) @@ -125,7 +125,7 @@ static const struct cpu_devs at91_devs[] DEVICE("at91_tc", TC0, 0), DEVICE("at91_tc", TC1, 1), DEVICE("ohci", OHCI, 0), - DEVICE("af91_cfata", CF, 0), + DEVICE("at91_cfata", CF, 0), { 0, 0, 0, 0, 0 } };