summaryrefslogtreecommitdiffstats
path: root/sys/isa/isa_common.c
diff options
context:
space:
mode:
authormdodd <mdodd@FreeBSD.org>1999-07-29 01:51:49 +0000
committermdodd <mdodd@FreeBSD.org>1999-07-29 01:51:49 +0000
commit371aa4e1b9dbd56bc6153e6e8b5482d86dd4fee0 (patch)
tree3fdd22d47891d5bb3e97eaedb77408364612cb84 /sys/isa/isa_common.c
parente495b00d19aaf17fae0a67881fa9bbc27f42f10b (diff)
downloadFreeBSD-src-371aa4e1b9dbd56bc6153e6e8b5482d86dd4fee0.zip
FreeBSD-src-371aa4e1b9dbd56bc6153e6e8b5482d86dd4fee0.tar.gz
Fix a typo.
Back out a few lines that I haven't dealt with properly yet. Snickered at by: Mike Smith
Diffstat (limited to 'sys/isa/isa_common.c')
-rw-r--r--sys/isa/isa_common.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/isa/isa_common.c b/sys/isa/isa_common.c
index 35bd28a..e1106ca 100644
--- a/sys/isa/isa_common.c
+++ b/sys/isa/isa_common.c
@@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: isa_common.c,v 1.3 1999/05/30 11:02:09 dfr Exp $
+ * $Id: isa_common.c,v 1.4 1999/07/29 01:02:56 mdodd Exp $
*/
/*
* Modifications for Intel architecture by Garrett A. Wollman.
@@ -164,10 +164,10 @@ isa_print_child(device_t bus, device_t dev)
if (SLIST_FIRST(rl) || idev->id_flags)
retval += printf(" at");
- retval += isa_print_resources(rl, "port", SYS_RES_IOPORT, "%#lx");
- retval += isa_print_resources(rl, "iomem", SYS_RES_MEMORY, "%#lx");
- retval += isa_print_resources(rl, "irq", SYS_RES_IRQ, "%ld");
- retval += isa_print_resources(rl, "drq", SYS_RES_DRQ, "%ld");
+ isa_print_resources(rl, "port", SYS_RES_IOPORT, "%#lx");
+ isa_print_resources(rl, "iomem", SYS_RES_MEMORY, "%#lx");
+ isa_print_resources(rl, "irq", SYS_RES_IRQ, "%ld");
+ isa_print_resources(rl, "drq", SYS_RES_DRQ, "%ld");
if (idev->id_flags)
retval += printf(" flags %#x", idev->id_flags);
OpenPOWER on IntegriCloud