From owner-svn-src-head@FreeBSD.ORG Sat Nov 22 21:24:08 2008 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9B2C31065677; Sat, 22 Nov 2008 21:24:08 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 961048FC1B; Sat, 22 Nov 2008 21:24:08 +0000 (UTC) (envelope-from marcel@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 mAMLO7me029664; Sat, 22 Nov 2008 21:24:07 GMT (envelope-from marcel@svn.freebsd.org) Received: (from marcel@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id mAMLO70a029663; Sat, 22 Nov 2008 21:24:07 GMT (envelope-from marcel@svn.freebsd.org) Message-Id: <200811222124.mAMLO70a029663@svn.freebsd.org> From: Marcel Moolenaar Date: Sat, 22 Nov 2008 21:24:07 +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: r185188 - head/sys/modules/uart X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 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: Sat, 22 Nov 2008 21:24:08 -0000 Author: marcel Date: Sat Nov 22 21:24:07 2008 New Revision: 185188 URL: http://svn.freebsd.org/changeset/base/185188 Log: Include the QUICC backend in the kernel module. PR: 127120 Modified: head/sys/modules/uart/Makefile Modified: head/sys/modules/uart/Makefile ============================================================================== --- head/sys/modules/uart/Makefile Sat Nov 22 21:22:53 2008 (r185187) +++ head/sys/modules/uart/Makefile Sat Nov 22 21:24:07 2008 (r185188) @@ -11,7 +11,8 @@ KMOD= uart SRCS= uart_bus_acpi.c ${uart_bus_ebus} uart_bus_isa.c uart_bus_pccard.c \ uart_bus_pci.c uart_bus_puc.c uart_bus_scc.c \ uart_core.c uart_dbg.c \ - uart_dev_ns8250.c uart_dev_sab82532.c uart_dev_z8530.c \ + uart_dev_ns8250.c uart_dev_quicc.c uart_dev_sab82532.c \ + uart_dev_z8530.c \ uart_if.c uart_if.h uart_subr.c uart_tty.c .if ${MACHINE} == "sun4v" SRCS+= uart_cpu_sparc64.c