From owner-svn-src-all@FreeBSD.ORG Thu Jul 12 19:15:39 2012 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2AF4A1065670; Thu, 12 Jul 2012 19:15:39 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 15F008FC12; Thu, 12 Jul 2012 19:15:39 +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 q6CJFcv4024387; Thu, 12 Jul 2012 19:15:38 GMT (envelope-from imp@svn.freebsd.org) Received: (from imp@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q6CJFcNc024384; Thu, 12 Jul 2012 19:15:38 GMT (envelope-from imp@svn.freebsd.org) Message-Id: <201207121915.q6CJFcNc024384@svn.freebsd.org> From: Warner Losh Date: Thu, 12 Jul 2012 19:15:38 +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: r238404 - head/sys/arm/at91 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 " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jul 2012 19:15:39 -0000 Author: imp Date: Thu Jul 12 19:15:38 2012 New Revision: 238404 URL: http://svn.freebsd.org/changeset/base/238404 Log: This file is no longer AT91RM9200 specific, but now is generic to all Atmel AT91 SoC's we support. Rename to reflect that. Added: head/sys/arm/at91/uart_cpu_at91usart.c - copied, changed from r238403, head/sys/arm/at91/uart_cpu_at91rm9200usart.c Deleted: head/sys/arm/at91/uart_cpu_at91rm9200usart.c Modified: head/sys/arm/at91/files.at91 Modified: head/sys/arm/at91/files.at91 ============================================================================== --- head/sys/arm/at91/files.at91 Thu Jul 12 19:11:37 2012 (r238403) +++ head/sys/arm/at91/files.at91 Thu Jul 12 19:15:38 2012 (r238404) @@ -22,7 +22,7 @@ arm/at91/at91_wdt.c optional at91_wdt arm/at91/if_ate.c optional ate arm/at91/if_macb.c optional macb arm/at91/uart_bus_at91usart.c optional uart -arm/at91/uart_cpu_at91rm9200usart.c optional uart +arm/at91/uart_cpu_at91usart.c optional uart arm/at91/uart_dev_at91usart.c optional uart # # All the "systems on a chip" we support Copied and modified: head/sys/arm/at91/uart_cpu_at91usart.c (from r238403, head/sys/arm/at91/uart_cpu_at91rm9200usart.c) ============================================================================== --- head/sys/arm/at91/uart_cpu_at91rm9200usart.c Thu Jul 12 19:11:37 2012 (r238403, copy source) +++ head/sys/arm/at91/uart_cpu_at91usart.c Thu Jul 12 19:15:38 2012 (r238404) @@ -43,7 +43,6 @@ __FBSDID("$FreeBSD$"); #include #include -#include #include bus_space_tag_t uart_bus_space_io;