From: Sascha Wildner Date: Wed, 4 Apr 2007 09:49:28 +0000 (+0000) Subject: Remove manual page of bus_generic_map_intr(), which was removed from X-Git-Tag: v2.0.1~3289 X-Git-Url: https://gitweb.dragonflybsd.org/dragonfly.git/commitdiff_plain/bf90bb97d20df91e62219e446b1c5b904ce638a6 Remove manual page of bus_generic_map_intr(), which was removed from FreeBSD before we forked. --- diff --git a/etc/Makefile b/etc/Makefile index 752490f6ba..0dac3e290e 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -1,6 +1,6 @@ # from: @(#)Makefile 5.11 (Berkeley) 5/21/91 # $FreeBSD: src/etc/Makefile,v 1.219.2.38 2003/03/04 09:49:00 ru Exp $ -# $DragonFly: src/etc/Makefile,v 1.164 2007/04/01 12:20:50 swildner Exp $ +# $DragonFly: src/etc/Makefile,v 1.165 2007/04/04 09:49:28 swildner Exp $ .if !defined(NO_SENDMAIL) SUBDIR= sendmail @@ -503,6 +503,7 @@ upgrade_etc: preupgrade csh -c "rm -f ${DESTDIR}/usr/share/man/{man,cat}3/archive_write_prepare.3.gz" csh -c "rm -f ${DESTDIR}/usr/share/man/{man,cat}3/archive_write_set_callbacks.3.gz" rm -f ${DESTDIR}/usr/share/examples/cvsup/OpenDarwin-supfile + csh -c "rm -f ${DESTDIR}/usr/share/man/{man,cat}9/bus_generic_map_intr.9.gz" ldconfig -R .if !defined(BINARY_UPGRADE) # binary upgrade just copies these nodes .if !defined(NOMAN) diff --git a/share/man/man9/Makefile b/share/man/man9/Makefile index 9ac55173f6..79adfc4174 100644 --- a/share/man/man9/Makefile +++ b/share/man/man9/Makefile @@ -1,5 +1,5 @@ # $FreeBSD: src/share/man/man9/Makefile,v 1.60.2.26 2003/06/13 01:04:17 hmp Exp $ -# $DragonFly: src/share/man/man9/Makefile,v 1.49 2007/03/31 11:21:47 swildner Exp $ +# $DragonFly: src/share/man/man9/Makefile,v 1.50 2007/04/04 09:49:28 swildner Exp $ MAN= accept_filter.9 \ accf_data.9 \ @@ -15,7 +15,6 @@ MAN= accept_filter.9 \ bus_dma.9 \ bus_generic_attach.9 \ bus_generic_detach.9 \ - bus_generic_map_intr.9 \ bus_generic_print_child.9 \ bus_generic_read_ivar.9 \ bus_generic_shutdown.9 \ diff --git a/share/man/man9/bus_generic_map_intr.9 b/share/man/man9/bus_generic_map_intr.9 deleted file mode 100644 index b72917e4da..0000000000 --- a/share/man/man9/bus_generic_map_intr.9 +++ /dev/null @@ -1,55 +0,0 @@ -.\" Copyright (c) 1998 Doug Rabson -.\" -.\" All rights reserved. -.\" -.\" This program is free software. -.\" -.\" Redistribution and use in source and binary forms, with or without -.\" modification, are permitted provided that the following conditions -.\" are met: -.\" 1. Redistributions of source code must retain the above copyright -.\" notice, this list of conditions and the following disclaimer. -.\" 2. Redistributions in binary form must reproduce the above copyright -.\" notice, this list of conditions and the following disclaimer in the -.\" documentation and/or other materials provided with the distribution. -.\" -.\" THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY EXPRESS OR -.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -.\" IN NO EVENT SHALL THE DEVELOPERS BE LIABLE FOR ANY DIRECT, INDIRECT, -.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -.\" -.\" $FreeBSD: src/share/man/man9/bus_generic_map_intr.9,v 1.3.2.3 2001/12/21 10:07:15 ru Exp $ -.\" $DragonFly: src/share/man/man9/Attic/bus_generic_map_intr.9,v 1.3 2004/06/01 11:36:53 hmp Exp $ -.\" -.Dd June 16, 1998 -.Dt BUS_GENERIC_MAP_INTR 9 -.Os -.Sh NAME -.Nm bus_generic_map_intr -.Nd generic implementation of -.Dv BUS_MAP_INTR -for busses -.Sh SYNOPSIS -.In sys/param.h -.In sys/bus.h -.Ft int -.Fn bus_generic_map_intr "device_t dev" "device_t child" "driver_intr_t *intr" "void *arg" -.Sh DESCRIPTION -This simple implementation of -.Xr BUS_MAP_INTR 9 -just calls the method of -.Fa dev 's -parent. -.Sh RETURN VALUES -Zero is returned on success, otherwise an appropriate error is returned. -.Sh SEE ALSO -.Xr device 9 -.Sh AUTHORS -This man page was written by -.An Doug Rabson .