From 3883cff7fbcd0a08fbe635d84a6fa5edb5e2fa80 Mon Sep 17 00:00:00 2001 From: thorpej Date: Mon, 2 Dec 1996 05:35:13 +0000 Subject: [PATCH] Oops, bus_space_set_{multi,region}_N() is supposed to have an `offset' argument. Add one to the `prototype' in the comment which preceeds `not implemented' :-) --- sys/arch/i386/include/bus.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/sys/arch/i386/include/bus.h b/sys/arch/i386/include/bus.h index 95b0b5b27e5f..a725199118f3 100644 --- a/sys/arch/i386/include/bus.h +++ b/sys/arch/i386/include/bus.h @@ -1,4 +1,4 @@ -/* $NetBSD: bus.h,v 1.6 1996/11/10 03:19:25 thorpej Exp $ */ +/* $NetBSD: bus.h,v 1.7 1996/12/02 05:35:13 thorpej Exp $ */ /* * Copyright (c) 1996 Charles M. Hannum. All rights reserved. @@ -406,7 +406,8 @@ void bus_space_free __P((bus_space_tag_t t, bus_space_handle_t bsh, /* * void bus_space_set_multi_N __P((bus_space_tag_t tag, - * bus_space_handle_t bsh, u_intN_t val, size_t count)); + * bus_space_handle_t bsh, bus_size_t offset, u_intN_t val, + * size_t count)); * * Write the 1, 2, 4, or 8 byte value `val' to bus space described * by tag/handle/offset `count' times. @@ -416,7 +417,8 @@ void bus_space_free __P((bus_space_tag_t t, bus_space_handle_t bsh, /* * void bus_space_set_region_N __P((bus_space_tag_t tag, - * bus_space_handle_t bsh, u_intN_t val, size_t count)); + * bus_space_handle_t bsh, bus_size_t offset, u_intN_t val, + * size_t count)); * * Write `count' 1, 2, 4, or 8 byte value `val' to bus space described * by tag/handle starting at `offset'.