From owner-p4-projects@FreeBSD.ORG Sun Jul 6 16:31:36 2008 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 5735C1065674; Sun, 6 Jul 2008 16:31:36 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1B47F1065684 for ; Sun, 6 Jul 2008 16:31:36 +0000 (UTC) (envelope-from marcel@freebsd.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 07B518FC12 for ; Sun, 6 Jul 2008 16:31:36 +0000 (UTC) (envelope-from marcel@freebsd.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m66GVZdD046007 for ; Sun, 6 Jul 2008 16:31:35 GMT (envelope-from marcel@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.14.2/8.14.1/Submit) id m66GVZw8046005 for perforce@freebsd.org; Sun, 6 Jul 2008 16:31:35 GMT (envelope-from marcel@freebsd.org) Date: Sun, 6 Jul 2008 16:31:35 GMT Message-Id: <200807061631.m66GVZw8046005@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 144787 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: Sun, 06 Jul 2008 16:31:36 -0000 http://perforce.freebsd.org/chv.cgi?CH=144787 Change 144787 by marcel@marcel_xcllnt on 2008/07/06 16:31:06 Add a skeletal implementation for the i8251. Doesn't do anything yet. Affected files ... .. //depot/projects/uart/conf/files#90 edit .. //depot/projects/uart/dev/uart/uart_dev_i8251.c#6 add .. //depot/projects/uart/modules/uart/Makefile#17 edit Differences ... ==== //depot/projects/uart/conf/files#90 (text+ko) ==== @@ -1260,6 +1260,8 @@ dev/uart/uart_bus_scc.c optional uart scc dev/uart/uart_core.c optional uart dev/uart/uart_dbg.c optional uart gdb +dev/uart/uart_dev_i8251.c optional uart uart_i8251 +dev/uart/uart_dev_i8251.c optional uart scc dev/uart/uart_dev_ns8250.c optional uart uart_ns8250 dev/uart/uart_dev_quicc.c optional uart quicc dev/uart/uart_dev_sab82532.c optional uart uart_sab82532 ==== //depot/projects/uart/modules/uart/Makefile#17 (text+ko) ==== @@ -11,7 +11,7 @@ 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_i8251.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 .if ${MACHINE} == "sun4v" SRCS+= uart_cpu_sparc64.c