From owner-p4-projects@FreeBSD.ORG Fri Feb 24 18:06:00 2006 Return-Path: X-Original-To: p4-projects@freebsd.org Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 200BE16A423; Fri, 24 Feb 2006 18:06:00 +0000 (GMT) X-Original-To: perforce@freebsd.org Delivered-To: perforce@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F00D316A420 for ; Fri, 24 Feb 2006 18:05:59 +0000 (GMT) (envelope-from marcel@freebsd.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF27E43D46 for ; Fri, 24 Feb 2006 18:05:59 +0000 (GMT) (envelope-from marcel@freebsd.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id k1OI5xa5013436 for ; Fri, 24 Feb 2006 18:05:59 GMT (envelope-from marcel@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id k1OI5xki013433 for perforce@freebsd.org; Fri, 24 Feb 2006 18:05:59 GMT (envelope-from marcel@freebsd.org) Date: Fri, 24 Feb 2006 18:05:59 GMT Message-Id: <200602241805.k1OI5xki013433@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to marcel@freebsd.org using -f From: Marcel Moolenaar To: Perforce Change Reviews Cc: Subject: PERFORCE change 92353 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Feb 2006 18:06:01 -0000 http://perforce.freebsd.org/chv.cgi?CH=92353 Change 92353 by marcel@marcel_nfs on 2006/02/24 18:05:57 Build the scc(4) attachment into the uart(4) module. Affected files ... .. //depot/projects/uart/modules/uart/Makefile#14 edit Differences ... ==== //depot/projects/uart/modules/uart/Makefile#14 (text+ko) ==== @@ -9,14 +9,15 @@ 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_core.c uart_cpu_${MACHINE}.c \ - uart_dbg.c uart_dev_ns8250.c uart_dev_sab82532.c uart_dev_z8530.c \ - uart_if.c uart_subr.c uart_tty.c + uart_bus_pci.c uart_bus_puc.c uart_bus_scc.c \ + uart_core.c uart_cpu_${MACHINE}.c uart_dbg.c \ + uart_dev_ns8250.c uart_dev_sab82532.c uart_dev_z8530.c \ + uart_if.c uart_if.h uart_subr.c uart_tty.c SRCS+= bus_if.h card_if.h device_if.h isa_if.h ${ofw_bus_if} pci_if.h \ - power_if.h uart_if.h pccarddevs.h + power_if.h pccarddevs.h serdev_if.h MFILES= dev/pccard/card_if.m dev/pccard/power_if.m dev/pci/pci_if.m \ dev/ofw/ofw_bus_if.m dev/uart/uart_if.m isa/isa_if.m kern/bus_if.m \ - kern/device_if.m + kern/device_if.m kern/serdev_if.m .include